Skip to content

dockerhub:2020.0

dockerhub:2020.0 #15

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: dockerhub:2020.0
on:
push:
branches:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w
- cron: '32 2 * * 5'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build for test
id: docker_build
uses: docker/build-push-action@v2
with:
file: ./Dockerfile20
push: true
tags: credocker/crephpdev:check20
-
name: Test
run: |
docker run credocker/crephpdev:check20 /cre/php-dev-test.sh
-
name: Build and push
id: docker_push
uses: docker/build-push-action@v2
with:
file: ./Dockerfile20
push: true
tags: credocker/crephpdev:2020.0, credocker/crephp:latest