Fix UNRELEASED_CHANGELOG.md path in release script

The file is located at v3/UNRELEASED_CHANGELOG.md, not at the repository root
This commit is contained in:
Lea Anthony 2025-07-25 22:03:26 +10:00
commit 67058c0923
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405

View file

@ -10,7 +10,7 @@ import (
const (
versionFile = "../../internal/version/version.txt"
unreleasedChangelogFile = "../../../UNRELEASED_CHANGELOG.md"
unreleasedChangelogFile = "../../UNRELEASED_CHANGELOG.md"
changelogFile = "../../../docs/src/content/docs/changelog.mdx"
)