Skip to content

Commit 8dd7e2f

Browse files
authored
Windows workflow fix
1 parent 980522d commit 8dd7e2f

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,10 @@ jobs:
2929
run: |
3030
python build.py --no-deps
3131
32-
- name: Upload binaries
33-
uses: actions/upload-release-asset@v1
34-
env:
35-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
with:
37-
asset_path: ./dist/swish.exe
38-
asset_name: swish.exe
39-
asset_content_type: application/octet-stream
40-
32+
- name: Upload binaries to release
33+
uses: svenstaro/upload-release-action@v2
34+
with:
35+
repo_token: ${{ secrets.GITHUB_TOKEN }}
36+
file: ./dist/swish.exe
37+
asset_name: swish.exe
38+
tag: ${{ github.ref }}

0 commit comments

Comments
 (0)