Skip to content

Commit

Permalink
Migrate GHA pypi publish action inputs to kebab-case
Browse files Browse the repository at this point in the history
As of v1.7.0, pypa/gh-action-pypi-publish uses kebab-case for input namings.
While snake_case names are still supported, they're now generating warnings
and will eventually be removed.
  • Loading branch information
Nothing4You committed Jun 11, 2023
1 parent 9473d7f commit 6fe50fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ jobs:
Publish 🐍📦 ${{ needs.pre-setup.outputs.git-tag }} to PyPI
uses: pypa/gh-action-pypi-publish@v1.8.6
with:
print_hash: true
print-hash: true
publish-testpypi:
name: Publish 🐍📦 ${{ needs.pre-setup.outputs.git-tag }} to TestPyPI
Expand Down Expand Up @@ -714,8 +714,8 @@ jobs:
Publish 🐍📦 ${{ needs.pre-setup.outputs.git-tag }} to TestPyPI
uses: pypa/gh-action-pypi-publish@v1.8.6
with:
repository_url: https://test.pypi.org/legacy/
print_hash: true
repository-url: https://test.pypi.org/legacy/
print-hash: true
post-release-repo-update:
name: >-
Expand Down

0 comments on commit 6fe50fc

Please sign in to comment.