Skip to content

Commit e76c19c

Browse files
author
Andreas Kanz
committed
-
1 parent 1c1415d commit e76c19c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ jobs:
1919
with:
2020
python-version: "3.9.*"
2121
- name: Build and publish 📦 to PyPI
22+
env:
23+
PUBLISH_TOKEN: ${{ secrets.POETRY_PUBLISH_TOKEN }}
2224
run: |
2325
python -m pip install --upgrade pip
2426
python -m pip install poetry
2527
poetry config virtualenvs.in-project true
2628
poetry install -v
27-
poetry config pypi-token.pypi $poetry_publish_token
29+
poetry config pypi-token.pypi $PUBLISH_TOKEN
2830
poetry publish --build

0 commit comments

Comments
 (0)