Skip to content

Rebuild PHP Image for branches #170

Rebuild PHP Image for branches

Rebuild PHP Image for branches #170

on:
workflow_dispatch:
name: Rebuild PHP Image for branches
jobs:
rebuild-php-images:
name: Rebuild ${{ matrix.branches }} branch
runs-on: ubuntu-22.04
strategy:
matrix:
branches: ['mg-14-php81']
fail-fast: false
permissions:
contents: read
steps:
- name: GIT checkout branch - refs/heads/${{ matrix.branches }}
uses: actions/checkout@v4
with:
ref: refs/heads/${{ matrix.branches }}
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Docker Setup Buildx
uses: docker/setup-buildx-action@v2
- name: Build PHP-FPM image and push it to DockerHub
run: |
TAG=shopsys/php-image:14.0-php81
docker buildx build --push --tag ${TAG} --no-cache --platform linux/arm64,linux/amd64 --compress -f ./Dockerfile .