Skip to content

Commit 088e3fd

Browse files
author
abel
committed
(fix) Changed release workflow to try to solve the error publishing packages to PyPi
1 parent 189c498 commit 088e3fd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
uses: actions/setup-python@v3
1616
- name: Install poetry
1717
run: python -m pip install poetry
18-
- run: poetry config pypi-token.pypi "${{ secrets.PYPI_API_KEY }}"
1918
- name: Publish package
20-
run: poetry publish --build
19+
run: |
20+
poetry config pypi-token.pypi "${{ secrets.PYPI_API_KEY }}"
21+
poetry publish --build

0 commit comments

Comments
 (0)