We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0de517d commit 7786428Copy full SHA for 7786428
1 file changed
.github/workflows/release.yml
@@ -35,16 +35,9 @@ jobs:
35
env:
36
VERSION_TAG: ${{ github.ref_name }}
37
38
- - name: Create GitHub Release
+ - name: Upload artifacts to GitHub Release
39
40
GH_TOKEN: ${{ github.token }}
41
run: |
42
TAG="${{ github.ref_name }}"
43
- PRERELEASE_FLAG=""
44
- if [[ "$TAG" == *-* ]]; then
45
- PRERELEASE_FLAG="--prerelease"
46
- fi
47
- gh release create "$TAG" \
48
- build/bundle/*.zip build/bundle/*.xpi \
49
- --generate-notes \
50
- $PRERELEASE_FLAG
+ gh release upload "$TAG" build/bundle/*.zip build/bundle/*.xpi
0 commit comments