diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 7e697ac..b232f39 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -108,11 +108,9 @@ jobs: - name: Create GitHub Release env: GITHUB_TOKEN: ${{ github.token }} - run: >- - gh release create - '${{ github.ref_name }}' - --repo '${{ github.repository }}' - --notes "" + run: | + gh release view '${{ github.ref_name }}' --repo '${{ github.repository }}' || \ + gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --notes "" - name: Upload artifact signatures to GitHub Release env: GITHUB_TOKEN: ${{ github.token }} diff --git a/authsignal/version.py b/authsignal/version.py index fa8968b..f1f5a0e 100644 --- a/authsignal/version.py +++ b/authsignal/version.py @@ -1 +1 @@ -VERSION = '2.0.5' +VERSION = '2.0.6' diff --git a/pyproject.toml b/pyproject.toml index 69d9485..295b795 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "authsignal" -version = "2.0.5" +version = "2.0.6" description = "Authsignal Python SDK for Passwordless Step Up Authentication" authors = ["justinsoong "] license = "MIT"