We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d28973e commit e0502feCopy full SHA for e0502fe
1 file changed
.github/workflows/release.yml
@@ -14,10 +14,12 @@ jobs:
14
- uses: actions/checkout@v4
15
- id: notes
16
run: |
17
- echo 'changelog<<EOF' >> $GITHUB_OUTPUT
18
- git log -20 --pretty=format:"* %s" > temp_changelog.txt
19
- cat temp_changelog.txt >> $GITHUB_OUTPUT
20
- echo 'EOF' >> $GITHUB_OUTPUT
+ {
+ echo 'changelog<<EOF'
+ git log -20 --pretty=format:"* %s"
+ echo 'EOF'
21
+ } >> $GITHUB_OUTPUT
22
+
23
24
build-windows:
25
needs: generate-release-notes
0 commit comments