2021-03-18 21:39:14 +01:00
|
|
|
name: Build docker WordPress image
|
2021-03-18 20:44:13 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-10 02:55:30 +02:00
|
|
|
-
|
|
|
|
name: checkout code
|
2022-09-10 02:50:20 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-09-10 02:55:30 +02:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2022-09-10 02:46:22 +02:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2022-09-10 02:55:30 +02:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
2022-09-10 02:46:22 +02:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-09-23 18:46:22 +02:00
|
|
|
with:
|
|
|
|
config-inline: |
|
|
|
|
[worker.oci]
|
|
|
|
max-parallelism = 16
|
2022-09-10 02:55:30 +02:00
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
2022-09-10 02:46:25 +02:00
|
|
|
uses: docker/login-action@v2
|
2021-03-18 20:44:13 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2022-09-10 22:50:11 +02:00
|
|
|
-
|
|
|
|
name: Await successful tests
|
2023-02-17 00:02:59 +01:00
|
|
|
uses: lewagon/wait-on-check-action@v1.3.1
|
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
|
|
|
-
|
2022-09-10 03:19:06 +02:00
|
|
|
name: Build and push
|
2022-10-13 00:48:46 +02:00
|
|
|
uses: docker/bake-action@v2.3.0
|
2022-09-10 03:19:06 +02:00
|
|
|
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
|