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 c419b75 commit 3656168Copy full SHA for 3656168
.github/workflows/ci.yaml
@@ -33,8 +33,11 @@ jobs:
33
cache-dependency-path: package-lock.json
34
- run: npm install
35
- run: npm run publish
36
- - uses: ncipollo/release-action@v1
37
- with:
38
- artifacts: "dist/*"
39
- removeArtifacts: true
40
- token: ${{ secrets.GITHUB_TOKEN }}
+ - name: Upload binaries to release
+ uses: svenstaro/upload-release-action@v2
+ with:
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
+ file: dist/*
41
+ file_glob: true
42
+ overwrite: true
43
+ tag: ${{ github.ref }}
0 commit comments