Skip to content

Commit cefcdda

Browse files
committed
feat: add 8.4.2
1 parent 28caa74 commit cefcdda

File tree

2 files changed

+491
-0
lines changed

2 files changed

+491
-0
lines changed

.github/workflows/push-8.4.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)