Skip to content

Commit

Permalink
Merge pull request #193 from Nitrokey/fix-pypi-repository-url
Browse files Browse the repository at this point in the history
Change PyPI repository url
  • Loading branch information
mmerklinger authored Jan 9, 2024
2 parents 9af498f + cc64f18 commit ebeca82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cd-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
needs: build
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
POETRY_PYPI_URL: https://upload.pypi.org/legacy/
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -70,6 +71,6 @@ jobs:
apt update
apt install -y python3-poetry
- name: Configure PyPI repository
run: poetry config repositories.pypi https://pypi.org/legacy/
run: poetry config repositories.pypi $POETRY_PYPI_URL
- name: Publish release
run: poetry publish -r pypi

0 comments on commit ebeca82

Please sign in to comment.