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 65c98e2 commit 7f5a2b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.18
current_version = 0.0.19
commit = True
tag = True

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

- name: Publish package
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{secrets.PYPI_PASSWORD}}
password: pypi-${{secrets.PYPI_PASSWORD}}

# - name: Publish to PyPI
# env:
Expand Down
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.18'
__version__ = '0.0.19'
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.18',
version='0.0.19',
zip_safe=False,
)

0 comments on commit 7f5a2b8

Please sign in to comment.