Skip to content

dfile: remove chrome #119

dfile: remove chrome

dfile: remove chrome #119

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 }}