Skip to content

Commit 2d99c81

Browse files
authored
ci: add step "Upload binaries to release"
1 parent bd65f02 commit 2d99c81

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/release.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ jobs:
122122
tag_name: ${{ github.event.inputs.tag }}
123123
release_name: Upgit ${{ github.event.inputs.tag }}
124124
body: ${{ steps.changelog.outputs.changes }}
125-
asset_files: 'dist/'
126125
draft: false
127126
prerelease: ${{ github.event.inputs.prerelease }}
127+
128+
- name: Upload binaries to release
129+
uses: svenstaro/upload-release-action@v2
130+
with:
131+
repo_token: ${{ secrets.GITHUB_TOKEN }}
132+
file: dist/**/*
133+
tag: ${{ github.ref }}
134+
overwrite: true
135+
file_glob: true

0 commit comments

Comments
 (0)