123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- name: Release
- on:
- push:
- tags:
- - "v[0-9]+.[0-9]+.[0-9]+"
- env:
- REGISTRY: ghcr.io
- IMAGE_NAME: ${{ github.repository }}
- jobs:
- docker-images:
- name: Docker with PHP ${{ matrix.php-version }}, Fixer ${{ github.ref_name }}
- if: github.repository == 'PHP-CS-Fixer/PHP-CS-Fixer'
- runs-on: ubuntu-latest
- strategy:
- matrix:
- include:
- - php-version: '7.4'
- alpine-version: '3.16'
- - php-version: '8.0'
- alpine-version: '3.16'
- - php-version: '8.1'
- alpine-version: '3.18'
- - php-version: '8.2'
- alpine-version: '3.18'
- - php-version: '8.3'
- alpine-version: '3.18'
- 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: ${{ env.REGISTRY }}
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
- - name: Make image lowercase
- run: |
- echo IMAGE_NAME_LOWER=$(echo ${{ env.IMAGE_NAME }} | tr '[:upper:]' '[:lower:]') >> ${GITHUB_ENV}
- - name: Extract metadata (tags, labels) for Docker
- id: meta
- uses: docker/metadata-action@v5
- with:
- flavor: |
- latest=false
- suffix=-php${{ matrix.php-version }}
- images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_LOWER }}
- tags: |
- type=semver,pattern={{version}}
- type=semver,pattern={{major}}.{{minor}}
- type=semver,pattern={{major}}
- - name: Build and push Docker image
- uses: docker/build-push-action@v5
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- file: Dockerfile
- target: dist
- build-args: |
- PHP_VERSION=${{ matrix.php-version }}
- ALPINE_VERSION=${{ matrix.alpine-version }}
- push: true
- tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}
|