Skip to content

Commit

Permalink
actions: Publish .whl with release
Browse files Browse the repository at this point in the history
  • Loading branch information
blazewicz committed Apr 6, 2020
1 parent bf85ca0 commit d586297
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,11 @@ jobs:
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
- name: Upload wheel file to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit d586297

Please sign in to comment.