ci(release): use vociferate releaseprep in gosick

This commit is contained in:
Micheal Wilkinson
2026-03-20 18:46:55 +00:00
parent 665a488c3b
commit 28ba4aab70
2 changed files with 8 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ jobs:
run: |
set -euo pipefail
if recommended_tag="$(go run ./cmd/releaseprep --recommend --root . 2>release-recommendation.err)"; then
if recommended_tag="$(go run git.hrafn.xyz/aether/vociferate/cmd/releaseprep@latest --recommend --root . --version-file internal/homesick/version/version.go --version-pattern 'const String = "([^"]+)"' --changelog changelog.md 2>release-recommendation.err)"; then
{
echo
echo '## Release Recommendation'

View File

@@ -9,4 +9,10 @@ fi
repo_root="$(cd "$(dirname "$0")/.." && pwd)"
release_date="$(date -u +%F)"
go run ./cmd/releaseprep --root "$repo_root" --version "$1" --date "$release_date"
go run git.hrafn.xyz/aether/vociferate/cmd/releaseprep@latest \
--root "$repo_root" \
--version "$1" \
--date "$release_date" \
--version-file internal/homesick/version/version.go \
--version-pattern 'const String = "([^"]+)"' \
--changelog changelog.md