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 988bec9 commit ab30856Copy full SHA for ab30856
.github/workflows/test.yml
@@ -7,6 +7,7 @@ on:
7
- 'package-lock.json'
8
- 'action.yml'
9
- 'node_modules/**'
10
+ - '.github/workflows/test.yml'
11
12
name: Test this action
13
@@ -41,4 +42,20 @@ jobs:
41
42
ls ${{ steps.compiler.outputs.path }}
43
wget https://raw.githubusercontent.com/pmmp/PHP-Binaries/master/compile.sh
44
chmod a+x compile.sh
45
+ trap "exit 1" ERR
46
./compile.sh -t android-aarch64 -x -j4 -P5 -s
47
+
48
+ - name: Create tarball
49
+ run: |
50
+ tar -czf ./PHP-Linux-aarch64-PM5.tar.gz bin
51
52
+ - name: Upload artifacts
53
+ uses: actions/upload-artifact@v4
54
+ if: always()
55
+ with:
56
+ name: Linux-PM5
57
+ path: |
58
+ ./PHP-Linux-aarch64-PM*.tar.gz
59
+ install.log
60
+ compile.sh
61
+ if-no-files-found: error
0 commit comments