Skip to content

Commit

Permalink
test pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
mburridge96 committed Apr 15, 2024
1 parent aec3b8c commit ed2d6fa
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,22 @@ jobs:
name: wheels
path: dist

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos]
environment: release
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: -r https://test.pypi.org/legacy/ --non-interactive --skip-existing wheels-*/*


0 comments on commit ed2d6fa

Please sign in to comment.