Skip to content

Commit fb0b715

Browse files
Release v0.5.0-post.1
This post release is identical to v0.5.0 but fixes the CI scripts so that the Linux and Windows binaries are generated correctly.
1 parent 7cf7933 commit fb0b715

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/cd-linux.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Check version tag format
1818
run: |
1919
TAG_VERSION="${{ github.event.release.tag_name }}"
20-
if [[ $TAG_VERSION =~ ^v[0-9]+.[0-9]+.[0-9]+(-rc\.[1-9])?$ ]]; then exit 0; else exit 1; fi
20+
if [[ $TAG_VERSION =~ ^v[0-9]+.[0-9]+.[0-9]+(-(rc|post)\.[1-9])?$ ]]; then exit 0; else exit 1; fi
2121
- name: Check if version tag and package version are equal
2222
run: |
2323
TAG_VERSION="${{ github.event.release.tag_name }}"

.github/workflows/cd-pypi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Check version tag format
1818
run: |
1919
TAG_VERSION="${{ github.event.release.tag_name }}"
20-
if [[ $TAG_VERSION =~ ^v[0-9]+.[0-9]+.[0-9]+(-rc\.[1-9])?$ ]]; then exit 0; else exit 1; fi
20+
if [[ $TAG_VERSION =~ ^v[0-9]+.[0-9]+.[0-9]+(-(rc|post)\.[1-9])?$ ]]; then exit 0; else exit 1; fi
2121
- name: Check if version tag and package version are equal
2222
run: |
2323
TAG_VERSION="${{ github.event.release.tag_name }}"

.github/workflows/cd-windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Check version tag format
1818
run: |
1919
$VERSION_TAG="${{ github.event.release.tag_name }}"
20-
if ($VERSION_TAG -match "^v[0-9]+.[0-9]+.[0-9]+(-rc\.[1-9])?$") {exit 0} else {exit 1}
20+
if ($VERSION_TAG -match "^v[0-9]+.[0-9]+.[0-9]+(-(rc|post)\.[1-9])?$") {exit 0} else {exit 1}
2121
- name: Check if version tag and package version are equal
2222
run: |
2323
$VERSION_TAG="${{ github.event.release.tag_name }}"

pynitrokey/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.5.0-post.1

0 commit comments

Comments
 (0)