File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ jobs:
27
27
fetch-depth : 0 # Need full history.
28
28
29
29
- name : release notes
30
- run : >-
31
- go run github.com/hashicorp/go-changelog/cmd/changelog-build@ba40b3a
32
- -changelog-template .github/release/changelog.gotmpl
33
- -note-template .github/release/release-note.gotmpl
34
- -entries-dir ./.changelog
35
- -last-release "${{ inputs.last_release }}"
36
- -this-release HEAD | tee /tmp/release-notes.txt
30
+ run : |
31
+ go run github.com/hashicorp/go-changelog/cmd/changelog-build@ba40b3a \
32
+ -changelog-template .github/release/changelog.gotmpl \
33
+ -note-template .github/release/release-note.gotmpl \
34
+ -entries-dir ./.changelog \
35
+ -last-release "${{ inputs.last_release }}" \
36
+ -this-release HEAD | tee /tmp/release-notes.txt
37
37
38
38
cat << EOF >> /tmp/release-notes.txt
39
39
DOWNLOAD:
44
44
- name : draft GH release
45
45
env :
46
46
GH_TOKEN : ${{ github.token }}
47
- run : >-
48
- gh release create "${{ inputs.version }}"
49
- --draft
50
- --notes-file /tmp/release-notes.txt
47
+ run : |
48
+ gh release create "${{ inputs.version }}" \
49
+ --draft \
50
+ --notes-file /tmp/release-notes.txt \
51
51
--title "${{ inputs.version }}"
You can’t perform that action at this time.
0 commit comments