Skip to content

Commit

Permalink
update release deployment test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alleria1809 committed Jul 12, 2024
1 parent 354dd53 commit ef3cb0f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,16 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install poetry
poetry env use python${{ matrix.python-version }}
poetry publish -u __token__ -p ${{ secrets.PYPI_KEY }}
- name: Download distribution
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: Publish to PyPI
run: |
cd dist
poetry publish --username __token__ --password ${{ secrets.PYPI_KEY }}
create-github-release:
needs: publish-to-pypi
Expand Down

0 comments on commit ef3cb0f

Please sign in to comment.