We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ef2b24 commit 3c36694Copy full SHA for 3c36694
.github/workflows/promote-artefacts.yaml
@@ -76,9 +76,12 @@ jobs:
76
id: release_notes
77
run: |
78
git fetch origin main
79
- echo "notes<<EOF" >> $GITHUB_OUTPUT
80
- git log --pretty=format:"- %h %s" origin/main...HEAD >> $GITHUB_OUTPUT
81
- echo "EOF" >> $GITHUB_OUTPUT
+ git log --pretty=format:"- %h %s" origin/main...HEAD > release_notes.txt
+ {
+ echo "notes<<EOF"
82
+ cat release_notes.txt
83
+ echo "EOF"
84
+ } >> "$GITHUB_OUTPUT"
85
86
- name: "Create GitHub Release"
87
if: ${{ inputs.artefact_promotion_type == 'release' }}
0 commit comments