We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187dbb6 commit 20d95aaCopy full SHA for 20d95aa
.github/workflows/release.yml
@@ -45,13 +45,16 @@ jobs:
45
with:
46
config: cliff.toml
47
args: --latest --strip header
48
+ github_token: ${{ secrets.GITHUB_TOKEN }}
49
50
# TODO: Perhaps there is a simpler way to avoid the heading of each release
51
- name: Process release notes
52
id: process-notes
53
run: |
54
# Remove the first two lines (version heading and empty line)
- echo "${{ steps.git-cliff.outputs.content }}" | tail -n +3 > release_notes.txt
55
+ cat << 'RELEASE_EOF' | tail -n +3 > release_notes.txt
56
+ ${{ steps.git-cliff.outputs.content }}
57
+ RELEASE_EOF
58
echo "content<<EOF" >> $GITHUB_OUTPUT
59
cat release_notes.txt >> $GITHUB_OUTPUT
60
echo "EOF" >> $GITHUB_OUTPUT
0 commit comments