Skip to content

Commit

Permalink
Stop using uv to publish to Test PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
fepegar committed Nov 17, 2024
1 parent 4f3f3ac commit 13e0b29
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/actions/publish-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ runs:

- name: Publish package to TestPyPI
if: ${{ inputs.test }} == true
run: uv publish --publish-url https://test.pypi.org/legacy/
shell: bash
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# repository-url: https://test.pypi.org/legacy/
# verbose: true
# skip-existing: true
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
verbose: true
skip-existing: true

- name: Publish package to PyPI
if: ${{ inputs.test }} == false
Expand Down

0 comments on commit 13e0b29

Please sign in to comment.