We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 014e337 commit a7c89eeCopy full SHA for a7c89ee
.github/workflows/build-and-publish.yml
@@ -29,10 +29,12 @@ jobs:
29
- name: Build package
30
run: python -m build --no-isolation
31
- name: Publish package
32
- uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
33
- with:
34
- user: __token__
35
- password: ${{ secrets.PYPI_API_TOKEN_2 }}
+ env:
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_2 }}
+ run: |
36
+ twine upload ./dist/*.whl --skip-existing
37
+ twine upload ./dist/*.tar.gz --skip-existing
38
- name: Build Windows executables
39
run: |
40
pyinstaller -F -i NONE pyncm/__main__.py --name pyncm
0 commit comments