Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
Tweak signature file uploads.
  • Loading branch information
rtibbles committed Nov 1, 2022
1 parent d012a28 commit 997fadb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,13 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TESTPYPI_API_TOKEN }}
run: |
twine upload -s -r testpypi dist/${{ inputs.whl-file-name }} dist/${{ inputs.whl-file-name }}.asc dist/${{ inputs.tar-file-name }} dist/${{ inputs.tar-file-name }}.asc
twine upload -s -r testpypi dist/${{ inputs.whl-file-name }} dist/${{ inputs.whl-file-name }}.asc
twine upload -s -r testpypi dist/${{ inputs.tar-file-name }} dist/${{ inputs.tar-file-name }}.asc
- name: Publish to PyPi
if: ${{ !inputs.test }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload -s dist/${{ inputs.whl-file-name }} dist/${{ inputs.whl-file-name }}.asc dist/${{ inputs.tar-file-name }} dist/${{ inputs.tar-file-name }}.asc
twine upload -s dist/${{ inputs.whl-file-name }} dist/${{ inputs.whl-file-name }}.asc
twine upload -s dist/${{ inputs.tar-file-name }} dist/${{ inputs.tar-file-name }}.asc
2 changes: 1 addition & 1 deletion kolibri_oidc_client_plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"

0 comments on commit 997fadb

Please sign in to comment.