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 3fe33b1 commit b85c369Copy full SHA for b85c369
.github/workflows/build-phar.yml
@@ -4,10 +4,13 @@ on:
4
push:
5
branches:
6
- master
7
+ tags:
8
+ - '*'
9
release:
10
types:
11
- published
-
12
+ - created
13
+
14
jobs:
15
create_phar:
16
runs-on: ubuntu-latest
@@ -43,7 +46,9 @@ jobs:
43
46
run: ./bin-stub/box.phar build -c ./box.json
44
47
45
48
- name: "Upload phar file artifact"
- uses: actions/upload-artifact@v2
- with:
- name: phparkitect.phar
49
- path: phparkitect.phar
+ uses: actions/upload-artifact@v2
50
+ with:
51
+ name: phparkitect.phar
52
+ path: phparkitect.phar
53
+ env:
54
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments