Skip to content

Commit

Permalink
twine settings
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Feb 1, 2024
1 parent 84999bb commit 03c5c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ jobs:
run: pip install PyGithub
- name: install twine
run: pip install twine
- run: env
- name: twine upload
env:
GITHUB_TAG: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/twine_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

print("Uploading to PyPI with twine...")
# Credentials are in the environment, TWINE_USERNAME and TWINE_PASSWORD.
twine_cmd = ["twine", "upload", "--skip-existing"] + asset_files
twine_cmd = ["twine", "upload", "--skip-existing", "--non-interactive"] + asset_files
subprocess.run(twine_cmd, check=True)

print("Success!")

0 comments on commit 03c5c79

Please sign in to comment.