Skip to content

Commit c1e2af9

Browse files
committed
build: fix python release workflows
Use the latest stable version of the action. Signed-off-by: Daniel Wagner <wagi@kernel.org>
1 parent 5ec1f52 commit c1e2af9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ jobs:
4242
path: dist
4343

4444
- name: Publish package to TestPyPI
45-
uses: pypa/gh-action-pypi-publish@release/v1.12
45+
uses: pypa/gh-action-pypi-publish@release-v1
4646
with:
4747
user: __token__
4848
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
49-
repository_url: https://test.pypi.org/legacy/
49+
repository-url: https://test.pypi.org/legacy/
5050

5151
upload_pypi:
5252
needs: [build_sdist]
@@ -66,7 +66,7 @@ jobs:
6666
name: artifact
6767
path: dist
6868
- name: Publish package to PyPI
69-
uses: pypa/gh-action-pypi-publish@release/v1.12
69+
uses: pypa/gh-action-pypi-publish@release-v1
7070
if: steps.check-tag.outputs.match == 'true'
7171
with:
7272
user: __token__

0 commit comments

Comments
 (0)