Skip to content

Commit

Permalink
add publish to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
klwetstone authored and chrisjkuch committed Aug 2, 2024
1 parent b4e5a28 commit f0bed51
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,18 @@ jobs:
- name: Build package
run: |
make dist
- name: Publish to Test PyPI
uses: pypa/[email protected]
with:
user: ${{ secrets.PYPI_TEST_USERNAME }}
password: ${{ secrets.PYPI_TEST_PASSWORD }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true

- name: Publish to Production PyPI
uses: pypa/[email protected]
with:
user: ${{ secrets.PYPI_PROD_USERNAME }}
password: ${{ secrets.PYPI_PROD_PASSWORD }}
skip_existing: false

0 comments on commit f0bed51

Please sign in to comment.