Skip to content

Commit ed1ace3

Browse files
committed
build: enable python test release and fix release tag
Enable back the python test release workflow again. While at it also fix the tag. Signed-off-by: Daniel Wagner <wagi@kernel.org>
1 parent c1e2af9 commit ed1ace3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release-python.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,14 @@ jobs:
3434
upload_test_pypi:
3535
needs: [build_sdist]
3636
runs-on: ubuntu-latest
37-
if: startsWith(github.ref, 'refs/tags/v')
3837
steps:
3938
- uses: actions/download-artifact@v4
4039
with:
4140
name: artifact
4241
path: dist
4342

4443
- name: Publish package to TestPyPI
45-
uses: pypa/gh-action-pypi-publish@release-v1
44+
uses: pypa/gh-action-pypi-publish:release-v1
4645
with:
4746
user: __token__
4847
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
@@ -66,7 +65,7 @@ jobs:
6665
name: artifact
6766
path: dist
6867
- name: Publish package to PyPI
69-
uses: pypa/gh-action-pypi-publish@release-v1
68+
uses: pypa/gh-action-pypi-publish:release-v1
7069
if: steps.check-tag.outputs.match == 'true'
7170
with:
7271
user: __token__

0 commit comments

Comments
 (0)