docs: fix deprecated option in github-deploy example (#1593)

The `github-deploy.yml` example workflow was using a deprecated argument `repository_url` which is not `repository-url` since v1.7.0 (https://github.com/pypa/gh-action-pypi-publish/releases/tag/v1.7.0 + https://github.com/pypa/gh-action-pypi-publish/blob/b7f401de30cb6434a1e19f805ff006643653240e/action.yml#L15)

Thus fixing the warning in GitHub workflows:

> Warning: Input 'repository_url' has been deprecated with message: The inputs have been normalized to use kebab-case. Use `repository-url` instead.
This commit is contained in:
Mikail
2023-09-05 10:07:16 -04:00
committed by GitHub
parent 1280565f7f
commit 82a1f99268
+1 -1
View File
@@ -60,4 +60,4 @@ jobs:
- uses: pypa/gh-action-pypi-publish@release/v1
with:
# To test: repository_url: https://test.pypi.org/legacy/
# To test: repository-url: https://test.pypi.org/legacy/