mirror of
https://github.com/jkaninda/nginx-php-fpm.git
synced 2025-12-06 05:29:43 +01:00
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@@ -28,7 +28,7 @@ jobs:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.1
|
||||
tags: "${{ env.BUILDKIT_IMAGE }}:8.1"
|
||||
tags: "${{ vars.BUILDKIT_IMAGE }}:8.1"
|
||||
-
|
||||
name: Build and push 8.2
|
||||
uses: docker/build-push-action@v3
|
||||
@@ -38,7 +38,7 @@ jobs:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
build-args: |
|
||||
phpVersion=8.2
|
||||
tags: "${{env.BUILDKIT_IMAGE}}:8.2"
|
||||
tags: "${{vars.BUILDKIT_IMAGE}}:8.2"
|
||||
-
|
||||
name: Build and push 8.3
|
||||
uses: docker/build-push-action@v3
|
||||
@@ -49,8 +49,8 @@ jobs:
|
||||
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.4 RC
|
||||
uses: docker/build-push-action@v3
|
||||
@@ -61,4 +61,4 @@ jobs:
|
||||
build-args: |
|
||||
phpVersion=8.4.0RC4
|
||||
tags: |
|
||||
"${{env.BUILDKIT_IMAGE}}:8.4.0RC4"
|
||||
"${{vars.BUILDKIT_IMAGE}}:8.4.0RC4"
|
||||
|
||||
31
.github/workflows/manual-build.yml
vendored
31
.github/workflows/manual-build.yml
vendored
@@ -59,25 +59,42 @@ jobs:
|
||||
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"
|
||||
build-args: |
|
||||
phpVersion=8.1
|
||||
tags: "${{ vars.BUILDKIT_IMAGE }}:8.1"
|
||||
-
|
||||
name: Build and push 8.2
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
file: "./src/docker/8.2/Dockerfile"
|
||||
file: "./src/docker/Dockerfile"
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: "${{env.BUILDKIT_IMAGE}}:8.2"
|
||||
build-args: |
|
||||
phpVersion=8.2
|
||||
tags: "${{vars.BUILDKIT_IMAGE}}:8.2"
|
||||
-
|
||||
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.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"
|
||||
Reference in New Issue
Block a user