mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
CICD: Improve the Release Note Generation
Use .md suffix to get the files displayed as markdown. Ignore generated artefacts. Signed-off-by: Michael Keller <mikeller@042.ch>
This commit is contained in:
parent
249b82f6dc
commit
6c8afabedf
5 changed files with 6 additions and 5 deletions
2
.github/workflows/post-releasenotes.yml
vendored
2
.github/workflows/post-releasenotes.yml
vendored
|
@ -32,5 +32,5 @@ jobs:
|
||||||
repository: subsurface/nightly-builds
|
repository: subsurface/nightly-builds
|
||||||
token: ${{ secrets.NIGHTLY_BUILDS }}
|
token: ${{ secrets.NIGHTLY_BUILDS }}
|
||||||
prerelease: false
|
prerelease: false
|
||||||
files: gh_release_notes
|
files: gh_release_notes.md
|
||||||
body_path: gh_release_notes
|
body_path: gh_release_notes
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -47,3 +47,4 @@ packaging/ios/Qt
|
||||||
packaging/ios/asset_catalog_compiler.Info.plist
|
packaging/ios/asset_catalog_compiler.Info.plist
|
||||||
appdata/subsurface.appdata.xml
|
appdata/subsurface.appdata.xml
|
||||||
android-mobile/Roboto-Regular.ttf
|
android-mobile/Roboto-Regular.ttf
|
||||||
|
gh_release_notes.md
|
||||||
|
|
8
scripts/create-releasenotes.sh
Normal file → Executable file
8
scripts/create-releasenotes.sh
Normal file → Executable file
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
json=$(gh pr list -s merged -S "$1" --json title,number,url)
|
json=$(gh pr list -s merged -S "$1" --json title,number,url)
|
||||||
|
|
||||||
cp gh_release_notes_top gh_release_notes
|
cp gh_release_notes_top.md gh_release_notes.md
|
||||||
if [[ $json != "[]" ]]; then
|
if [[ $json != "[]" ]]; then
|
||||||
(
|
(
|
||||||
echo -n 'This build was created by [merging pull request '
|
echo -n 'This build was created by [merging pull request '
|
||||||
|
@ -16,11 +16,11 @@ if [[ $json != "[]" ]]; then
|
||||||
echo -n ')]('
|
echo -n ')]('
|
||||||
echo -n $json | jq -j '.[0]|{url}|join(" ")'
|
echo -n $json | jq -j '.[0]|{url}|join(" ")'
|
||||||
echo ' )'
|
echo ' )'
|
||||||
) >> gh_release_notes
|
) >> gh_release_notes.md
|
||||||
else
|
else
|
||||||
(
|
(
|
||||||
echo "This build was created by directly pushing to the Subsurface repo."
|
echo "This build was created by directly pushing to the Subsurface repo."
|
||||||
echo "The latest commit was [$(git log --pretty=format:"%an: '%s'" -n1)](https://github.com/subsurface/subsurface/commit/$1 )"
|
echo "The latest commit was [$(git log --pretty=format:"%an: '%s'" -n1)](https://github.com/subsurface/subsurface/commit/$1 )"
|
||||||
) >> gh_release_notes
|
) >> gh_release_notes.md
|
||||||
fi
|
fi
|
||||||
cat gh_release_notes_bottom >> gh_release_notes
|
cat gh_release_notes_bottom.md >> gh_release_notes.md
|
||||||
|
|
Loading…
Add table
Reference in a new issue