We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bb7602 commit 0cff36cCopy full SHA for 0cff36c
.github/workflows/python-publish.yml
@@ -30,9 +30,10 @@ jobs:
30
- name: Build the package
31
run: poetry build
32
33
+ - name: Configure Poetry for PyPI
34
+ run: |
35
+ poetry config pypi-token.pypi ${{ secrets.TWINE_API_TOKEN }}
36
+
37
- name: Publish to PyPI
- env:
- TWINE_API_TOKEN: ${{ secrets.PYPI_TOKEN }}
38
run: |
- poetry config pypi-token.pypi $TWINE_API_TOKEN
39
poetry publish --no-interaction --no-ansi
0 commit comments