We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c1ce91e + 6ec7719 commit 786d371Copy full SHA for 786d371
.github/workflows/publish.yml
@@ -16,10 +16,14 @@ jobs:
16
- name: Install Poetry
17
run: |
18
curl -sSL https://install.python-poetry.org | python3 -
19
- - name: Build and publish
20
- env:
21
- PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
22
- run: |
23
- poetry config pypi-token.pypi $PYPI_TOKEN
24
- poetry build
25
- poetry publish
+ - name: Configure Poetry
+ run: poetry config pypi-token.pypi ""
+
+ - name: Build package
+ run: poetry build
+ - name: Publish to PyPI
26
+ env:
27
+ POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
28
+ POETRY_HTTP_BASIC_PYPI_PASSWORD: ""
29
+ run: poetry publish
.github/workflows/test.yml
@@ -2,7 +2,7 @@ name: Tests
2
3
on:
4
pull_request:
5
- branches: [main]
+ branches: [master]
6
7
jobs:
8
test:
0 commit comments