Skip to content

Commit

Permalink
Version 1.6.17
Browse files Browse the repository at this point in the history
QoL: Format code with `black`
Github Actions: Build and upload on Windows runner
  • Loading branch information
mos9527 committed Sep 24, 2024
1 parent 014e337 commit a7c89ee
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ jobs:
- name: Build package
run: python -m build --no-isolation
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN_2 }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_2 }}
run: |
twine upload ./dist/*.whl --skip-existing
twine upload ./dist/*.tar.gz --skip-existing
- name: Build Windows executables
run: |
pyinstaller -F -i NONE pyncm/__main__.py --name pyncm
Expand Down

0 comments on commit a7c89ee

Please sign in to comment.