Skip to content

Commit 91151a0

Browse files
authored
build: Fix reference to pypi-publish (#19)
#18 changed the pypi action in the release build, but it was not valid, and made the build fail.
1 parent b286b34 commit 91151a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
- name: Build package
2020
run: python -m build
2121
- name: Publish to Test PyPI
22-
uses: pypa/gh-action-pypi-publish@v1
22+
uses: pypa/gh-action-pypi-publish@release/v1
2323
with:
2424
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
25-
repository_url: https://test.pypi.org/legacy/
25+
repository-url: https://test.pypi.org/legacy/
2626
- name: Publish to PyPI
27-
uses: pypa/gh-action-pypi-publish@v1
27+
uses: pypa/gh-action-pypi-publish@release/v1
2828
with:
2929
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)