We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b25afc commit 6ec7719Copy full SHA for 6ec7719
.github/workflows/publish.yml
@@ -16,8 +16,14 @@ jobs:
16
- name: Install Poetry
17
run: |
18
curl -sSL https://install.python-poetry.org | python3 -
19
- - name: Build and publish
20
- run: |
21
- poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
22
- poetry build
23
- poetry publish
+ - name: Configure Poetry
+ run: poetry config pypi-token.pypi ""
+
+ - name: Build package
+ run: poetry build
24
25
+ - name: Publish to PyPI
26
+ env:
27
+ POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
28
+ POETRY_HTTP_BASIC_PYPI_PASSWORD: ""
29
+ run: poetry publish
0 commit comments