Skip to content

Continues Integration #91

Continues Integration

Continues Integration #91

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Continues Integration"
on:
pull_request:
push:
branches:
- "main"
- "renovate/*"
schedule:
- cron: "0 0 * * 0"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ghcr.io/${{ github.repository }}
jobs:
build:
name: Build Docker image
strategy:
matrix:
platform: [ 'linux/amd64', 'linux/arm64' ]
version: [ '8.1', '8.2', '8.3', '8.4' ]
extensions: [ 'pcntl xdebug zip intl bcmath rdkafka pdo_pgsql pdo_mysql gd opentelemetry' ]
runs-on: ${{ startsWith(matrix.platform, 'linux/arm') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
steps:
- name: Check out the repo
uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
tags: ${{ matrix.version }}
- name: Build and Push to GitHub Packages
uses: docker/build-push-action@v6
with:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=gha,scope=ci-cache
type=gha,scope=release-cache
cache-to: type=gha,mode=max,scope=release-cache
push: ${{ github.ref_name == 'main' }}
build-args: |
VERSION=${{ matrix.version }}
EXTENSIONS=${{ matrix.extensions }}