Skip to content

Commit

Permalink
fix: corrige publicação automática de pacotes no pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
hudsonbrendon committed Mar 30, 2024
1 parent 1df9e62 commit 009be4a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry config ${{ secrets.PYPI_SECRET_KEY }}
- name: Check Package
run: poetry check
- name: Build Package
run: poetry build
- name: Publish Package
run: poetry publish --username=${{ secrets.PYPI_USERNAME }} --password=${{ secrets.PYPI_PASSWORD }}
run: poetry publish

0 comments on commit 009be4a

Please sign in to comment.