Update release workflow

This commit is contained in:
Lea Anthony 2025-07-25 21:56:13 +10:00
commit 6dc51420ac
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405
3 changed files with 4 additions and 2 deletions

View file

@ -521,6 +521,7 @@ jobs:
if gh release create "${{ steps.release.outputs.tag }}" \
--title "${{ steps.release.outputs.title }}" \
--notes-file release_notes.md \
--target v3-alpha \
--prerelease; then
echo "✅ Successfully created GitHub release"
echo "outcome=success" >> $GITHUB_OUTPUT

View file

@ -17,7 +17,8 @@ After processing, the content will be moved to the main changelog and this file
## Added
<!-- New features, capabilities, or enhancements -->
- Add Windows `getAccentColor` implementation by [@almas-x](https://github.com/almas-x) in [PR](https://github.com/wailsapp/wails/pull/4427)
-
## Changed
<!-- Changes in existing functionality -->

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"
)