diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index d212862..5742185 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -31,7 +31,9 @@ jobs: python -m pip install build python -m pip install wheel twine setuptools - name: Build a binary wheel and a source tarball - run: python -m build + run: | + rm -rf dist/ + python -m build - name: Publish distribution 📦 to PyPI run: python -m twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} diff --git a/setup.py b/setup.py index 59c2b67..9ad3440 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open('README.md', 'r', encoding='utf-8') as fh: long_description = fh.read() -version_number = os.environ.get('CHAPA_VERSION', '0.1.1') +version_number = os.environ.get('CHAPA_VERSION', '0.1.2') setuptools.setup( name='chapa',