Update dependency wp-cli/wp-cli-bundle to ^2.11.0 #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Docker Images | |
on: | |
push: | |
paths: | |
- '.github/workflows/**' | |
- 'docker-compose.yml' | |
- 'local/docker/**' | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build images | |
run: docker-compose build | |
- name: Publish images | |
if: github.ref_name == 'master' | |
run: docker buildx bake --push --set '*.platform=linux/amd64,linux/arm64' |