Skip to content

Commit 4b1dbac

Browse files
committed
dont use env
1 parent d3e8b96 commit 4b1dbac

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/build-and-push.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ on:
66
env:
77
REGISTRY: ghcr.io
88
REGISTRY_IMAGE_NAME: ghcr.io/${{ github.repository }}
9-
VERSIONS: ['8.4', '8.4-frankenphp']
109

1110
jobs:
1211
build-and-push-amd64:
1312
strategy:
1413
fail-fast: false
1514
matrix:
16-
phpversion: ${{ env.VERSIONS }}
15+
phpversion:
16+
- '8.4'
17+
- '8.4-frankenphp'
1718
runs-on: ubuntu-24.04
1819
steps:
1920
- name: Checkout
@@ -39,7 +40,9 @@ jobs:
3940
strategy:
4041
fail-fast: false
4142
matrix:
42-
phpversion: ${{ env.VERSIONS }}
43+
phpversion:
44+
- '8.4'
45+
- '8.4-frankenphp'
4346
runs-on: ubuntu-latest-arm64
4447
steps:
4548
- name: Checkout
@@ -66,7 +69,9 @@ jobs:
6669
strategy:
6770
fail-fast: false
6871
matrix:
69-
phpversion: ${{ env.VERSIONS }}
72+
phpversion:
73+
- '8.4'
74+
- '8.4-frankenphp'
7075
runs-on: ubuntu-24.04
7176
steps:
7277
- name: Checkout

0 commit comments

Comments
 (0)