diff --git a/.github/workflows/pypi_release.yml b/.github/workflows/pypi_release.yml index a02f9872..76fdaf7e 100644 --- a/.github/workflows/pypi_release.yml +++ b/.github/workflows/pypi_release.yml @@ -94,13 +94,8 @@ jobs: - name: Create GitHub Release env: GITHUB_TOKEN: ${{ github.token }} - run: | - gh release create "v$VERSION" --title "v$VERSION" --notes "Release for version $VERSION" --repo RichieHakim/ROICaT - - name: Upload artifact signatures to GitHub Release - env: - GITHUB_TOKEN: ${{ github.token }} - # Upload to GitHub Release using the `gh` CLI. - # `dist/` contains the built packages, and the - # sigstore-produced signatures and certificates. run: >- - gh release upload v$VERSION ${{ github.workspace }}/dist/* --repo ${{ github.repository }} \ No newline at end of file + gh release create "v$VERSION" + --title "v$VERSION" + --notes "Release for version $VERSION. Also available on PyPI: https://pypi.org/project/roicat/$VERSION/" + --repo ${{ github.repository }} \ No newline at end of file diff --git a/roicat/__init__.py b/roicat/__init__.py index 3ba00ed2..c7b74e56 100644 --- a/roicat/__init__.py +++ b/roicat/__init__.py @@ -13,4 +13,4 @@ for pkg in __all__: exec('from . import ' + pkg) -__version__ = '1.1.22' \ No newline at end of file +__version__ = '1.1.23' \ No newline at end of file