Skip to content

Commit

Permalink
update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
taoning committed Oct 30, 2024
1 parent aa15c34 commit 728a46b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,14 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: dist
path: downloaded_dist

- name: Create dist directory
run: mkdir -p dist

- name: Move wheels to dist directory
run: |
find downloaded_dist -name "*.whl" -exec mv {} dist/ \;
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 728a46b

Please sign in to comment.