Skip to content

Commit 3656168

Browse files
author
Engin Diri
authored
chore: fix release (#5)
Signed-off-by: Engin Diri <[email protected]>
1 parent c419b75 commit 3656168

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ jobs:
3333
cache-dependency-path: package-lock.json
3434
- run: npm install
3535
- run: npm run publish
36-
- uses: ncipollo/release-action@v1
37-
with:
38-
artifacts: "dist/*"
39-
removeArtifacts: true
40-
token: ${{ secrets.GITHUB_TOKEN }}
36+
- name: Upload binaries to release
37+
uses: svenstaro/upload-release-action@v2
38+
with:
39+
repo_token: ${{ secrets.GITHUB_TOKEN }}
40+
file: dist/*
41+
file_glob: true
42+
overwrite: true
43+
tag: ${{ github.ref }}

0 commit comments

Comments
 (0)