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 8a4a746 commit 01d899eCopy full SHA for 01d899e
.github/workflows/release.yaml
@@ -118,10 +118,8 @@ jobs:
118
119
- # Upload the build artifacts to the release
120
name: Upload the build artifacts to release
121
- uses: svenstaro/upload-release-action@v2
122
if: github.event_name == 'release'
123
- with:
124
- repo_token: ${{ secrets.GITHUB_TOKEN }}
125
- file: dist/*
126
- file_glob: true
127
- tag: ${{ github.ref }}
+ run: gh release upload ${{ github.ref_name }} dist/*
+ env:
+ GH_TOKEN: ${{ github.token }}
+
0 commit comments