Skip to content

Commit

Permalink
Use kebab-case for gh-action-pypi-publish parameters
Browse files Browse the repository at this point in the history
Signed-off-by: Almir Cunha <[email protected]>
  • Loading branch information
almirmcunhajr authored Sep 19, 2024
1 parent f21f21b commit 965dc68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ jobs:
- name: Publish Python distribution to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository_url: https://test.pypi.org/legacy/
repository-url: https://test.pypi.org/legacy/
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
skip_existing: true
print_hash: true
skip-existing: true
print-hash: true
verbose: true
- name: Publish Python distribution to PyPI
if: startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
print_hash: true
print-hash: true
verbose: true

0 comments on commit 965dc68

Please sign in to comment.