Skip to content

Commit

Permalink
bugfix: bump version and update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
favipcj committed Jul 1, 2024
1 parent 76dfecd commit d5f4a43
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,19 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Python Semantic Release
uses: python-semantic-release/[email protected]
- name: Set up Python
uses: actions/setup-python@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_username: __token__
repository_password: ${{ secrets.PYPI_TOKEN }}
python-version: '3.x'
- name: Install twine
run: pip install twine
- name: Upload wheel
if: inputs.input-upload-wheel
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: invalid
TWINE_NON_INTERACTIVE: 1
run: |
python setup.py bdist_wheel
twine upload dist/*.whl
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ universal = 1

[metadata]
description-file = README.md
version = 1.0.1
version = 1.0.2

0 comments on commit d5f4a43

Please sign in to comment.