wordpress/.github/workflows/image.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2021-03-18 21:39:14 +01:00
name: Build docker WordPress image
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
2022-09-10 02:55:30 +02:00
-
name: checkout code
uses: actions/checkout@v3
2022-09-10 02:55:30 +02:00
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
2022-09-10 02:55:30 +02:00
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
config-inline: |
[worker.oci]
max-parallelism = 16
2022-09-10 02:55:30 +02:00
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2022-09-10 22:50:11 +02:00
-
name: Await successful tests
uses: lewagon/wait-on-check-action@v1.2.0
2022-09-10 22:50:11 +02:00
with:
ref: ${{ github.sha }}
check-name: tests
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 20
2022-09-10 02:55:30 +02:00
-
name: Build and push
uses: docker/bake-action@v2.3.0
with:
files: build/docker-bake.hcl
push: true
set: |
2022-09-14 02:14:24 +02:00
*.cache-from=type=gha,scope=wordpress
*.cache-to=type=gha,scope=wordpress,mode=max