-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
d.rudenko
committed
Oct 14, 2024
1 parent
55a46c3
commit 7a92671
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,12 +67,15 @@ jobs: | |
- name: Install maturin | ||
run: pip install maturin | ||
|
||
- name: Show contents of dist directory | ||
run: ls -la dist # Show the structure of the dist directory before uploading | ||
|
||
- name: Upload wheels to PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_token }} | ||
packages_dir: dist # Specify the directory where the wheels are located | ||
packages_dir: dist | ||
verify_metadata: true | ||
skip_existing: false | ||
verbose: false | ||
|