Skip to content

feat: support for 8.3 php images #67

feat: support for 8.3 php images

feat: support for 8.3 php images #67

Workflow file for this run

---
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
env:
DOCKER_NAMESPACE: wayofdev/php-base
GHCR_NAMESPACE: ghcr.io/wayofdev/php-base
name: 🚀 Build docker images with latest tag
jobs:
build:
strategy:
fail-fast: false
matrix:
os_name: ["alpine"]
php_version: ["8.1"]
php_type: ["fpm"]
builder: [{arch: "amd64", os: "ubuntu-latest"}]
runs-on: ${{ matrix.builder.os }}
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4
- name: 🤖 Generate dist files
run: ansible-playbook src/playbook.yml -l ${{ matrix.php_version }}-${{ matrix.php_type }}-${{ matrix.os_name }}
- name: 💻 Set up Docker for MacOS
if: ${{ matrix.builder.os == 'macos-latest' }}
uses: docker-practice/actions-setup-docker@master
- name: 🛠️ Setup docker QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: "--debug"
- name: 🔑 Login to docker-hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: 🔑 Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🚀 Build image and push to docker-hub and GHCR
id: bake
uses: docker/bake-action@v3
with:
targets: php-81-${{ matrix.php_type }}-${{ matrix.os_name }}
files: |
./docker-bake.hcl
set: |
*.platform=linux/${{ matrix.builder.arch }}"
*.tags=${{ steps.meta.outputs.tags }}
*.platform=linux/${{ matrix.builder.arch }}
*.output=type=image,"name=${{ env.DOCKERHUB_SLUG }},${{ env.GHCR_SLUG }}",push-by-digest=true,name-canonical=true,push=${{ github.event_name != 'pull_request' }}
- name: 🔍 Display tags built
run: |
docker image ls --filter="reference=${{ env.DOCKER_NAMESPACE }}" --format "{{.CreatedAt}}\t{{.Size}}\t{{.Repository}}:{{.Tag}}"
- name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ fromJSON(steps.bake.outputs.metadata).image['containerimage.digest'] }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: digests
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
...