Merge pull request #97 from reload/dependabot/github_actions/docker/b… #92
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
on: push | |
name: Docker build and push | |
jobs: | |
php-versions: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.php-versions.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lookup PHP versions from Dockerfile-* names | |
run: echo ::set-output name=matrix::$(ls Dockerfile-* | cut -c 12- | jq --raw-input --slurp 'split("\n") | map(select(. != ""))') | |
id: php-versions | |
build: | |
name: Docker build and push | |
if: > | |
${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
needs: php-versions | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ${{ fromJSON(needs.php-versions.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker images | |
uses: docker/build-push-action@v6 | |
with: | |
file: Dockerfile-${{ matrix.php }} | |
builder: ${{ steps.buildx.outputs.name }} | |
push: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
labels: | | |
org.opencontainers.image.source=https://github.com/${{ github.repository }} | |
org.opencontainers.image.version=${{ matrix.php }}-${{ github.sha }} | |
org.opencontainers.image.revision=${{ github.sha }} | |
tags: | | |
ghcr.io/${{ github.repository }}:${{ matrix.php }} | |