Skip to content

Commit

Permalink
Merge pull request #1673 from xiaoyifang/staged
Browse files Browse the repository at this point in the history
merge staged to dev
  • Loading branch information
shenlebantongying authored Jul 11, 2024
2 parents 3eab614 + 5d30a56 commit e2ba22e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release-windows-vcpkg-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$tagName = "v$env:version-$env:versionSuffix.$(git rev-parse --short=8 HEAD)"
$changeNotes = "
Add-Content -Path ./change_note.txt -Value "
[Install instructions for Windows, macOS and Linux](https://xiaoyifang.github.io/goldendict-ng/install/).
Filename pattern: GoldenDict-ng-[version]-[Qt version]-[system name]-...
Expand All @@ -154,16 +154,18 @@ jobs:
Based on branch: ${{github.ref_name}}
#### Changes
"
Add-Content -Path ./change_note.txt -Value @'
${{steps.build_changelog.outputs.changelog}}
"
'@
$tagExist = gh api --silent "repos/:owner/:repo/git/refs/tags/${{github.ref_name}}"
if (-not $?) {
if ($env:prerelease -eq "true") {
gh release create ${tagName} --target ${{github.ref_name}} --notes "${changeNotes}" --latest=false --prerelease
gh release create ${tagName} --target ${{github.ref_name}} --notes-file=./change_note.txt --latest=false --prerelease
} else {
gh release create ${tagName} --target ${{github.ref_name}} --notes "${changeNotes}" --latest=true
gh release create ${tagName} --target ${{github.ref_name}} --notes-file=./change_note.txt --latest=true
}
}
Expand Down

0 comments on commit e2ba22e

Please sign in to comment.