mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-06 17:09:39 +01:00
Add add php 8.4 RC
This commit is contained in:
104
.github/workflows/build.yml
vendored
104
.github/workflows/build.yml
vendored
@@ -3,82 +3,104 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
env:
|
||||
BUILDKIT_IMAGE: jkaninda/laravel-php-fpm
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
uses: docker/setup-qemu-action@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
uses: docker/setup-buildx-action@v2
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push 8.0
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.0/Dockerfile"
|
||||
push: true
|
||||
tags: "${{env.BUILDKIT_IMAGE}}:8.0"
|
||||
-
|
||||
name: Build and push 8.1
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.1/Dockerfile"
|
||||
file: "./src/docker/Dockerfile"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: "${{env.BUILDKIT_IMAGE}}:8.1"
|
||||
-
|
||||
name: Build and push 8.2
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.2/Dockerfile"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: "${{env.BUILDKIT_IMAGE}}:8.2"
|
||||
build-args: |
|
||||
phpVersion=8.1
|
||||
tags: "${{ vars.BUILDKIT_IMAGE }}:8.1"
|
||||
-
|
||||
name: Build and push 8.1 alpine
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.1/Dockerfile.alpine"
|
||||
file: "./src/docker/Dockerfile.alpine"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
"${{env.BUILDKIT_IMAGE}}:8.1-alpine"
|
||||
build-args: |
|
||||
phpVersion=8.1
|
||||
tags: "${{ vars.BUILDKIT_IMAGE }}:8.1-alpine"
|
||||
-
|
||||
name: Build and push 8.2
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/Dockerfile"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.2
|
||||
tags: "${{vars.BUILDKIT_IMAGE}}:8.2"
|
||||
-
|
||||
name: Build and push 8.2 alpine
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.2/Dockerfile.alpine"
|
||||
file: "./src/docker/Dockerfile.alpine"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
"${{env.BUILDKIT_IMAGE}}:8.2-alpine"
|
||||
-
|
||||
name: Build and push 8.3 alpine
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.3/Dockerfile.alpine"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
"${{env.BUILDKIT_IMAGE}}:8.3-alpine"
|
||||
build-args: |
|
||||
phpVersion=8.2
|
||||
tags: "${{vars.BUILDKIT_IMAGE}}:8.2-alpine"
|
||||
-
|
||||
name: Build and push 8.3
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.3/Dockerfile"
|
||||
file: "./src/docker/Dockerfile"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.3
|
||||
tags: |
|
||||
"${{env.BUILDKIT_IMAGE}}:8.3"
|
||||
"${{env.BUILDKIT_IMAGE}}:latest"
|
||||
"${{vars.BUILDKIT_IMAGE}}:8.3"
|
||||
"${{vars.BUILDKIT_IMAGE}}:latest"
|
||||
-
|
||||
name: Build and push 8.3 alpine
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/Dockerfile.alpine"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.3
|
||||
tags: |
|
||||
"${{vars.BUILDKIT_IMAGE}}:8.3-alpine"
|
||||
-
|
||||
name: Build and push 8.4 RC
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/Dockerfile"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.4.0RC4
|
||||
tags: |
|
||||
"${{vars.BUILDKIT_IMAGE}}:8.4.0RC4"
|
||||
-
|
||||
name: Build and push 8.4 RC alpine
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/Dockerfile.alpine"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.4.0RC4
|
||||
tags: |
|
||||
"${{vars.BUILDKIT_IMAGE}}:8.4.0RC4-alpine"
|
||||
|
||||
Reference in New Issue
Block a user