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 76bdb96 commit 45f69d0Copy full SHA for 45f69d0
.github/workflows/pypi.yml
@@ -32,10 +32,15 @@ jobs:
32
poetry build
33
cat pyproject.toml
34
35
+
36
- name: Publish the package to pypi
- uses: JRubics/poetry-publish@v1.9
37
- with:
38
- python_version: '3.10'
39
- repository_username: ${{ secrets.TWINE_USERNAME }}
40
- repository_password: ${{ secrets.TWINE_PASSWORD }}
+ run : |
+ poetry config http-basic.pypi ${{ secrets.TWINE_USERNAME }} ${{ secrets.TWINE_PASSWORD }}
+ poetry publish
41
+ #uses: JRubics/poetry-publish@v1.9
42
+ #with:
43
+ # python_version: '3.10'
44
+ # repository_username: ${{ secrets.TWINE_USERNAME }}
45
+ # repository_password: ${{ secrets.TWINE_PASSWORD }}
46
0 commit comments