Skip to content

Commit d586297

Browse files
committed
actions: Publish .whl with release
1 parent bf85ca0 commit d586297

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,11 @@ jobs:
2929
run: |
3030
python setup.py sdist bdist_wheel
3131
twine upload dist/*
32+
- name: Upload wheel file to release
33+
uses: svenstaro/upload-release-action@v1-release
34+
with:
35+
repo_token: ${{ secrets.GITHUB_TOKEN }}
36+
file: dist/*.whl
37+
tag: ${{ github.ref }}
38+
overwrite: true
39+
file_glob: true

0 commit comments

Comments
 (0)