Build Image #291
This file contains hidden or 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
| name: Build Image | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| php-version: | |
| required: true | |
| type: string | |
| description: 'PHP version to build' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ inputs.php-version }} | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.arch == 'amd64' && 'ubuntu-latest' || 'ubuntu-24.04-arm' }} | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: | |
| - amd64 | |
| - arm64 | |
| include: | |
| - php: ${{ inputs.php-version }} | |
| steps: | |
| - name: Check Out | |
| uses: actions/checkout@v6 | |
| - name: Login to Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: nayleen | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set Up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| with: | |
| driver-opts: network=host | |
| - name: Custom Metadata | |
| id: custom-metadata | |
| run: | | |
| FULL_VERSION=$(./tools/resolve-php-version.sh ${{ matrix.php }}) | |
| BASE_IMAGE="docker.io/php:$FULL_VERSION-cli" | |
| BASE_IMAGE_DIGEST=$(./tools/docker-image-digest.sh "$BASE_IMAGE") | |
| echo "base-image=$BASE_IMAGE" >> $GITHUB_OUTPUT | |
| echo "base-image-digest=$BASE_IMAGE_DIGEST" >> $GITHUB_OUTPUT | |
| echo "php-version=$FULL_VERSION" >> $GITHUB_OUTPUT | |
| - name: Docker Metadata | |
| id: docker-metadata | |
| uses: docker/metadata-action@v5 | |
| env: | |
| DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest-descriptor,index-descriptor | |
| with: | |
| annotations: | | |
| org.opencontainers.image.authors=https://github.com/nayleen | |
| org.opencontainers.image.base.digest=${{ steps.custom-metadata.outputs.base-image-digest }} | |
| org.opencontainers.image.base.name=${{ steps.custom-metadata.outputs.base-image }} | |
| org.opencontainers.image.url=https://github.com/nayleen/docker-php/pkgs/container/php | |
| org.opencontainers.image.version=${{ steps.custom-metadata.outputs.php-version }}-${{ matrix.arch }} | |
| images: ghcr.io/nayleen/php | |
| tags: | | |
| type=raw,value=${{ matrix.php }}-${{ matrix.arch }} | |
| - name: Build and Push Docker Images | |
| uses: docker/build-push-action@v6 | |
| with: | |
| annotations: ${{ steps.docker-metadata.outputs.annotations }} | |
| build-args: "PHP_VERSION=${{ matrix.php }}" | |
| cache-from: type=registry,ref=ghcr.io/nayleen/php:${{ matrix.php }}-${{ matrix.arch }}-cache | |
| cache-to: type=registry,ref=ghcr.io/nayleen/php:${{ matrix.php }}-${{ matrix.arch }}-cache,mode=max | |
| context: . | |
| push: true | |
| tags: ${{ steps.docker-metadata.outputs.tags }} | |
| combine-manifests: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| packages: write | |
| steps: | |
| - name: Login to Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: nayleen | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Combine Manifests | |
| run: | | |
| docker buildx imagetools create -t ghcr.io/nayleen/php:${{ inputs.php-version }} \ | |
| ghcr.io/nayleen/php:${{ inputs.php-version }}-amd64 \ | |
| ghcr.io/nayleen/php:${{ inputs.php-version }}-arm64 |