We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f6fd32 commit a270e69Copy full SHA for a270e69
1 file changed
.github/workflows/release.yml
@@ -22,14 +22,16 @@ jobs:
22
- id: notes
23
shell: bash
24
run: |
25
+ set -euo pipefail
26
delim="__CHANGELOG__"
27
{
- echo "changelog<<$delim"
28
- git log -20 --pretty=format:'* %s'
29
- echo "$delim"
+ printf 'changelog<<%s\n' "$delim"
+ git log -20 --pretty=format:'* %s' || true
30
+ printf '\n%s\n' "$delim"
31
} >> "$GITHUB_OUTPUT"
32
33
34
+
35
create-release:
36
needs: generate-release-notes
37
runs-on: ubuntu-latest
0 commit comments