chore: add changelog to release tag
2 files changed, 7 insertions(+), 1 deletion(-)
changed files
A .tag.versionrc
@@ -0,0 +1,4 @@ +host: "https://codeberg.org" +owner: "alanpearce" +repository: "searchix" +header: ""
M justfile → justfile
@@ -63,7 +63,9 @@ set -eu VERSION=$(convco version --bump --print-prefix) git add CHANGELOG.md nix/package.nix nix/modules/default.nix git commit -m "chore: release ${VERSION}" - git tag "${VERSION}" + convco changelog -c .tag.versionrc -m 1 -n -s $(convco version --print-prefix) | \ + sed -e 1d -e "2s/^#* //" -e 's/^##//' | \ + git tag "${VERSION}" -F - git push origin main "${VERSION}" run: dev