Skip to content

Commit

Permalink
release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pnxenopoulos committed Jun 3, 2024
1 parent be95a39 commit eaa7e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
- name: Publish to test PyPI
run: |
poetry publish --repository testpypi --username __token__ --password ${{ secrets.TEST_PYPI_API_TOKEN }}
poetry publish --build --repository testpypi --username __token__ --password ${{ secrets.TEST_PYPI_API_TOKEN }}
- name: Check that installation from test PyPI passes
run: |
poetry add awpy --source testpypi
- name: Publish to PyPI
run: |
poetry publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
poetry publish --build --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
- name: Check that installation from PyPI passes
run: |
Expand Down

0 comments on commit eaa7e79

Please sign in to comment.