Skip to content

Commit 0c28332

Browse files
Fix GitHub release process (#23)
* Fix Github Release process * Bump version
1 parent 23378a7 commit 0c28332

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/publish-to-pypi.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,9 @@ jobs:
108108
- name: Create GitHub Release
109109
env:
110110
GITHUB_TOKEN: ${{ github.token }}
111-
run: >-
112-
gh release create
113-
'${{ github.ref_name }}'
114-
--repo '${{ github.repository }}'
115-
--notes ""
111+
run: |
112+
gh release view '${{ github.ref_name }}' --repo '${{ github.repository }}' || \
113+
gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --notes ""
116114
- name: Upload artifact signatures to GitHub Release
117115
env:
118116
GITHUB_TOKEN: ${{ github.token }}

authsignal/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '2.0.5'
1+
VERSION = '2.0.6'

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "authsignal"
3-
version = "2.0.5"
3+
version = "2.0.6"
44
description = "Authsignal Python SDK for Passwordless Step Up Authentication"
55
authors = ["justinsoong <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)