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 5710911 commit e9f75e0Copy full SHA for e9f75e0
.github/workflows/download-cache.yml
@@ -7,6 +7,7 @@ on:
7
8
env:
9
GITHUB_TOKEN: ${{ secrets.FRANKEN_GITHUB_TOKEN }}
10
+ PHP_VERSION: 8.4
11
12
jobs:
13
download:
@@ -47,9 +48,9 @@ jobs:
47
48
- name: "Archive downloads as zip"
49
run: |
50
cd downloads/
- zip -r download-files-${{ matrix.php-version }}.zip .
51
+ zip -r download-files-${{ env.PHP_VERSION }}.zip .
52
mkdir ../downloads-archive/
- mv download-files-8.4.zip ../downloads-archive/
53
+ mv download-files-${{ env.PHP_VERSION }}.zip ../downloads-archive/
54
cd ..
55
56
- name: "Deploy to self-hosted OSS"
0 commit comments