Commit 5e34c98 1 parent 74dc9cb commit 5e34c98 Copy full SHA for 5e34c98
File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 60
60
root="$(dirname "$root")"
61
61
done
62
62
echo "version=$version" | tee -a $GITHUB_OUTPUT
63
- echo "tag=${prefix}${version}" | tee -a $GITHUB_OUTPUT
64
- echo "suffix=${version#*[-+]}" | tee -a $GITHUB_OUTPUT
63
+ tag="${prefix}${version}"
64
+ echo "tag=$tag" | tee -a $GITHUB_OUTPUT
65
+ suffix="${version#*[-+]}"
66
+ suffix="${suffix#"$version"}"
67
+ echo "suffix=$suffix" | tee -a $GITHUB_OUTPUT
65
68
- id : latest
66
69
if : steps.version.outputs.version != ''
67
70
name : Determine latest 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.17] - 2024-12-06
10
+ ### Fixed
11
+ - the releaser workflow was not setting the suffix correctly
12
+
9
13
## [ 1.0.16] - 2024-12-05
10
14
### Added
11
15
- a ` cgo ` job specific configuration variable which disables cgo in the go-test workflow
You can’t perform that action at this time.
0 commit comments