AUTODEPLOYED @lando/[email protected] #391
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
name: Build PHP Images | |
on: | |
# Uncomment below for testing purposes | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
buildx: | |
runs-on: ubuntu-24.04 | |
env: | |
TERM: xterm | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- image: php | |
tag: 8.4-fpm-4 | |
context: images/8.4-fpm | |
- image: php | |
tag: 8.4-apache-4 | |
context: images/8.4-apache | |
- image: php | |
tag: 8.3-fpm-4 | |
context: images/8.3-fpm | |
- image: php | |
tag: 8.3-apache-4 | |
context: images/8.3-apache | |
- image: php | |
tag: 8.2-fpm-4 | |
context: images/8.2-fpm | |
- image: php | |
tag: 8.2-apache-4 | |
context: images/8.2-apache | |
- image: php | |
tag: 8.1-fpm-4 | |
context: images/8.1-fpm | |
- image: php | |
tag: 8.1-apache-4 | |
context: images/8.1-apache | |
- image: php | |
tag: 8.0-fpm-4 | |
context: images/8.0-fpm | |
- image: php | |
tag: 8.0-apache-4 | |
context: images/8.0-apache | |
- image: php | |
tag: 7.4-fpm-4 | |
context: images/7.4-fpm | |
- image: php | |
tag: 7.4-apache-4 | |
context: images/7.4-apache | |
- image: php | |
tag: 7.3-fpm-4 | |
context: images/7.3-fpm | |
- image: php | |
tag: 7.3-apache-4 | |
context: images/7.3-apache | |
- image: php | |
tag: 7.2-fpm-4 | |
context: images/7.2-fpm | |
- image: php | |
tag: 7.2-apache-4 | |
context: images/7.2-apache | |
- image: php | |
tag: 7.1-fpm-4 | |
context: images/7.1-fpm | |
- image: php | |
tag: 7.1-apache-4 | |
context: images/7.1-apache | |
- image: php | |
tag: 7.0-fpm-4 | |
context: images/7.0-fpm | |
- image: php | |
tag: 7.0-apache-4 | |
context: images/7.0-apache | |
- image: php | |
tag: 5.6-fpm-4 | |
context: images/5.6-fpm | |
- image: php | |
tag: 5.6-apache-4 | |
context: images/5.6-apache | |
steps: | |
- name: Checkout code | |
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: Set tag suffix | |
id: release | |
if: ${{ github.event_name == 'pull_request' }} | |
run: echo "tag_suffix=-edge" >> "$GITHUB_OUTPUT" | |
# Build our images. | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push devwithlando/${{ matrix.image }}:${{ matrix.tag }}${{ steps.release.outputs.tag_suffix }} | |
uses: docker/build-push-action@v6 | |
with: | |
context: ${{ matrix.context }} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: devwithlando/${{ matrix.image }}:${{ matrix.tag }}${{ steps.release.outputs.tag_suffix }} | |
cache-from: type=gha,scope=${{ matrix.image }}-${{ matrix.tag }} | |
cache-to: type=gha,mode=max,scope=${{ matrix.image }}-${{ matrix.tag }} |