Skip to content

Commit

Permalink
Release binary wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
jonghwanhyeon committed Dec 12, 2022
1 parent 7ff6caf commit ffceb7c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,20 @@ jobs:
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}
password: ${{ secrets.pypi_password }}

upload_release:
needs: [build_wheels, build_windows_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
name: artifact
path: dist

- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/*

0 comments on commit ffceb7c

Please sign in to comment.