Skip to content

Commit

Permalink
refactor(release): kebab-case inputs
Browse files Browse the repository at this point in the history
Input 'repository_url' has been deprecated with message: The inputs have been normalized to use kebab-case. Use `repository-url` instead.
  • Loading branch information
thekaveman committed Nov 17, 2023
1 parent 2f7ad0d commit 838e388
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
if: ${{ contains(github.ref, '-pre') }}
with:
repository_url: https://test.pypi.org/legacy/
print_hash: true
skip_existing: true
repository-url: https://test.pypi.org/legacy/
print-hash: true
skip-existing: true
verbose: true

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: ${{ !contains(github.ref, '-pre') }}
with:
print_hash: true
print-hash: true

0 comments on commit 838e388

Please sign in to comment.