Build buildpacks-ci docker image #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build buildpacks-ci docker image | |
on: | |
workflow_dispatch: { } | |
schedule: | |
- cron: "0 1 * * 4" | |
push: | |
branches: [ master ] | |
paths: [ Dockerfile, config/**, build/** , Gemfile, Gemfile.lock ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.CF_BUILDPACKS_DOCKERHUB_USERNAME }} | |
password: ${{ secrets.CF_BUILDPACKS_DOCKERHUB_TOKEN }} | |
- name: Get current date | |
id: get-date | |
run: echo "::set-output name=date::$(date +'%Y.%m.%d')" | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
tags: cfbuildpacks/ci:latest, cfbuildpacks/ci:${{ steps.get-date.outputs.date }} |