Skip to content

Commit 6fe50fc

Browse files
committed
Migrate GHA pypi publish action inputs to kebab-case
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.
1 parent 9473d7f commit 6fe50fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ jobs:
682682
Publish 🐍📦 ${{ needs.pre-setup.outputs.git-tag }} to PyPI
683683
uses: pypa/[email protected]
684684
with:
685-
print_hash: true
685+
print-hash: true
686686
687687
publish-testpypi:
688688
name: Publish 🐍📦 ${{ needs.pre-setup.outputs.git-tag }} to TestPyPI
@@ -714,8 +714,8 @@ jobs:
714714
Publish 🐍📦 ${{ needs.pre-setup.outputs.git-tag }} to TestPyPI
715715
uses: pypa/[email protected]
716716
with:
717-
repository_url: https://test.pypi.org/legacy/
718-
print_hash: true
717+
repository-url: https://test.pypi.org/legacy/
718+
print-hash: true
719719
720720
post-release-repo-update:
721721
name: >-

0 commit comments

Comments
 (0)