We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b122c commit 736b766Copy full SHA for 736b766
1 file changed
.github/workflows/build.yml
@@ -1,8 +1,8 @@
1
-name: Build
+name: Build on push and upload release if tagging
2
on:
3
- push
4
jobs:
5
- Run:
+ Build:
6
runs-on: ubuntu-latest
7
strategy:
8
matrix:
@@ -35,3 +35,10 @@ jobs:
35
with:
36
name: firephp
37
path: dist/firephp.zip
38
+
39
+ - name: Upload Release
40
+ uses: fnkr/github-action-ghr@v1
41
+# if: startsWith(github.ref, 'refs/tags/')
42
+ env:
43
+ GHR_PATH: dist/firephp.zip
44
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments