feat: support for 8.3 php images #71
Workflow file for this run
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
--- | |
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: 🌎 Set environment variables | |
run: | | |
tag=${{ matrix.php_version }}-${{ matrix.php_type }}-${{ matrix.os_name }}-${{ matrix.builder.arch }} | |
echo "PLATFORM_TAG=${tag}" >> $GITHUB_ENV | |
- 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: 🚀 Bake 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: | | |
*.tags= | |
*.platform=linux/${{ matrix.builder.arch }} | |
*.cache-from=type=gha,scope=build-${{ env.PLATFORM_TAG }} | |
*.cache-to=type=gha,scope=build-${{ env.PLATFORM_TAG }} | |
*.output=type=image,"name=${{ env.DOCKER_NAMESPACE }},${{ env.GHCR_NAMESPACE }}",push-by-digest=true,name-canonical=true,push=${{ github.event_name != 'pull_request' }} | |
- name: 🔍 Display tags built | |
run: | | |
docker image ls | |
- 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 | |
... |