Skip to content

Commit

Permalink
FEAT: Automated PYPI publication
Browse files Browse the repository at this point in the history
  • Loading branch information
daquintero committed Jun 11, 2023
1 parent 1b8fa2d commit 12311b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.15
current_version = 0.0.16
commit = True
tag = True

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: python -m build

- name: Publish to PyPI
run: python -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{secrets.PYPI_PASSWORD}}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{secrets.PYPI_PASSWORD}}
run: python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
2 changes: 1 addition & 1 deletion piel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Dario Quintero"""
__email__ = '[email protected]'
__version__ = '0.0.15'
__version__ = '0.0.16'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/daquintero/piel',
version='0.0.15',
version='0.0.16',
zip_safe=False,
)

0 comments on commit 12311b6

Please sign in to comment.