backy/release
Andrew Woodlee 67a1eab908
Some checks failed
ci/woodpecker/push/publish-docs Pipeline failed
ci/woodpecker/tag/gitea Pipeline was successful
ci/woodpecker/tag/publish-docs Pipeline failed
v0.7.0 make changes to release script
2025-02-11 21:37:42 -06:00

10 lines
321 B
Bash
Executable File

#!/bin/bash
export CURRENT_TAG="$(go run backy.go version -V)"
changie batch $CURRENT_TAG
changie merge
git add .changes/
git commit =am "$CURRENT_TAG"
git tag "$CURRENT_TAG"
git push all
git push all --tags
# goreleaser release -f .goreleaser/gitea.yml --clean --release-notes=".changes/$(go run backy.go version -V).md"