wordpress/.github/workflows/image.yml

50 lines
1.2 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@v4
2022-09-10 02:55:30 +02:00
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
2022-09-10 02:55:30 +02:00
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
config-inline: |
[worker.oci]
max-parallelism = 16
2022-09-10 02:55:30 +02:00
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2023-04-05 22:54:20 +02:00
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
2023-04-05 22:54:20 +02:00
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.PAT_TOKEN}}
2022-09-10 22:50:11 +02:00
-
name: Await successful tests
uses: lewagon/wait-on-check-action@v1.3.4
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@v5.10.0
with:
files: build/docker-bake.hcl
2023-04-05 19:31:57 +02:00
push: true