diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 5e51e9f..4f46e5a 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -1,6 +1,9 @@ name: Build and publish Fellowship to PyPI and TestPyPI -on: push +on: + push + branches: + - master jobs: build-n-publish: @@ -21,6 +24,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python setup.py sdist - name: Publish distribution to Test PyPI + if: "!startsWith(github.ref, 'refs/tags')" uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.TEST_PYPI_FELLOWSHIP_TOKEN }} @@ -29,4 +33,4 @@ jobs: if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: - password: ${{ secrets.PYPI_FELLOWSHIP_TOKEN }} + password: ${{ secrets.PYPI_FELLOWSHIP_TOKEN }} \ No newline at end of file diff --git a/README.rst b/README.rst index ddcb040..b960407 100644 --- a/README.rst +++ b/README.rst @@ -90,3 +90,6 @@ The code and the issues are hosted on `GitHub The project is licensed under `BSD-3-Clause `_. + +The documentation is hosted on `read_the_docs +`_ diff --git a/fellowship/_version.py b/fellowship/_version.py index 4d84a62..c9e9022 100644 --- a/fellowship/_version.py +++ b/fellowship/_version.py @@ -2,4 +2,4 @@ # Licensed under the BSD 3-Clause License. # SPDX-License-Identifier: BSD-3-Clause -__version__ = '0.0.1' +__version__ = '0.0.2'