File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,13 @@ jobs:
71
71
echo "suffix=$suffix" | tee -a $GITHUB_OUTPUT
72
72
- id : latest
73
73
if : steps.version.outputs.version != ''
74
- name : Determine latest version
74
+ name : Determine latest version (only final versions)
75
75
env :
76
76
PREFIX : ${{ steps.version.outputs.prefix }}
77
77
TAG : ${{ steps.version.outputs.tag }}
78
78
run : |
79
79
git fetch origin --tags
80
- echo -e "${TAG}\n$(git tag)" | grep "^${PREFIX}" | sort -V | tail -n1 | xargs -I{} echo "latest={}" | tee -a $GITHUB_OUTPUT
80
+ echo -e "${TAG}\n$(git tag)" | grep "^${PREFIX}" | grep -v - | sort -V | tail -n1 | xargs -I{} echo "latest={}" | tee -a $GITHUB_OUTPUT
81
81
- id : branch
82
82
name : Check if the branch is a release branch
83
83
if : steps.version.outputs.version != ''
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## Unreleased
8
8
9
+ ## [ 1.0.27] - 2025-06-15
10
+ ### Fixed
11
+ - fixed the latest version check in the ` releaser ` workflow
12
+
9
13
## [ 1.0.26] - 2025-06-15
10
14
### Changed
11
15
- updated the body of the issues created by the ` tagpush ` workflow
You can’t perform that action at this time.
0 commit comments