We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28caa74 commit cefcddaCopy full SHA for cefcdda
.github/workflows/push-8.4.yml
@@ -0,0 +1,34 @@
1
+name: Docker Build for PHP 8.4
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'main'
7
+ paths:
8
+ - 'Dockerfile-8.4'
9
+ - 'docker-*'
10
11
+env:
12
+ VERSION: '8.4'
13
14
+jobs:
15
+ build:
16
+ name: Build Testing
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Set up QEMU
20
+ uses: docker/setup-qemu-action@v3
21
22
+ - name: Set up Docker Buildx
23
+ uses: docker/setup-buildx-action@v3
24
25
+ - name: Build and cache
26
+ uses: docker/build-push-action@v6
27
+ with:
28
+ file: Dockerfile-${{ env.VERSION }}
29
+ target: builder
30
+ platforms: |
31
+ linux/amd64
32
+ linux/arm64/v8
33
+ cache-to: type=gha, scope=php-${{ env.VERSION }}, mode=max
34
+ outputs: type=cacheonly
0 commit comments