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 1c1415d commit e76c19cCopy full SHA for e76c19c
.github/workflows/pythonpublish.yml
@@ -19,10 +19,12 @@ jobs:
19
with:
20
python-version: "3.9.*"
21
- name: Build and publish 📦 to PyPI
22
+ env:
23
+ PUBLISH_TOKEN: ${{ secrets.POETRY_PUBLISH_TOKEN }}
24
run: |
25
python -m pip install --upgrade pip
26
python -m pip install poetry
27
poetry config virtualenvs.in-project true
28
poetry install -v
- poetry config pypi-token.pypi $poetry_publish_token
29
+ poetry config pypi-token.pypi $PUBLISH_TOKEN
30
poetry publish --build
0 commit comments