diff --git a/.github/workflows/build-and-publish-wheels.yml b/.github/workflows/build-and-publish-wheels.yml index 3141609..db3b810 100644 --- a/.github/workflows/build-and-publish-wheels.yml +++ b/.github/workflows/build-and-publish-wheels.yml @@ -1,14 +1,8 @@ --- name: build-and-publish-to-pypi -# build wheels and push to PyPI whenever a GitHub release is published on: - push: - branches: - - build/* - pull_request: - branches: - - build/* + # build wheels and push to PyPI whenever a GitHub release is published release: types: - published @@ -52,7 +46,7 @@ jobs: with: name: wheel path: dist - - uses: pypa/gh-action-pypi-publish@v1.10.2 + - uses: pypa/gh-action-pypi-publish@v1.10.3 with: user: __token__ password: ${{ secrets.PYPI_API_KEY }} diff --git a/src/pydistcheck/__init__.py b/src/pydistcheck/__init__.py index ae92075..e16bd77 100644 --- a/src/pydistcheck/__init__.py +++ b/src/pydistcheck/__init__.py @@ -1,4 +1,4 @@ # no one should be importing from this package __all__ = [] # type: ignore[var-annotated] -__version__ = "0.7.1.99" +__version__ = "0.8.0"