vet

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 3362f9476da2723a26c4add2ea90078ff2adca0d
parent 59283d8c737a7ac64d9c461e8cd0254d23606e2c
Author: Andrew Laack <andrew@laack.co>
Date:   Wed, 18 Feb 2026 14:54:58 -0600

Fix release notes to diff from previous tag

Diffstat:
M.github/workflows/publish-github-release.yml | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/publish-github-release.yml b/.github/workflows/publish-github-release.yml @@ -19,6 +19,8 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + PREV_TAG=$(git tag --sort=-v:refname | grep '^v' | sed -n '2p') gh release create "$GITHUB_REF_NAME" \ --title "$GITHUB_REF_NAME" \ - --generate-notes + --generate-notes \ + --notes-start-tag "$PREV_TAG"