We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053ed82 commit eb168b3Copy full SHA for eb168b3
.github/workflows/poetry-build-test-release.yml
@@ -40,7 +40,9 @@ jobs:
40
poetry run flake8 ./src --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
41
- name: Publish distribution 📦 to PyPI
42
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
43
- uses: code-specialist/pypi-poetry-publish@v1
44
with:
45
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
- PUBLISH_REGISTRY_PASSWORD: ${{ secrets.PYPI_TOKEN }}
+ PUBLISH_REGISTRY_PASSWORD: ${{ secrets.PYPI_TOKEN }}
+ run: |
47
+ poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
48
+ poetry publish
0 commit comments