Skip to content

Commit

Permalink
Automatically attaching whls to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
philkr committed Aug 20, 2021
1 parent 75ac4d0 commit 1c308eb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,13 @@ jobs:

- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
path: ./wheelhouse/*.whl

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./wheelhouse/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 1c308eb

Please sign in to comment.