File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 67
67
- name : List output files
68
68
run : Get-ChildItem -Path ./publish/app -Force
69
69
70
-
71
- - name : Create release notes
72
- id : create-release-notes
73
- run :
74
- echo "## Last 10 commits:"
75
- git log -n 10 --format="%s (%h) %ad" --date=short
76
- echo ""
77
- echo "## Contributors:"
78
- git shortlog -sn --no-merges
79
-
80
- - name : Get contributors
81
- id : get-contributors
82
- run : |
83
- git shortlog -sn --no-merges
84
70
- name : Create Release
85
71
id : create_release
86
72
uses : actions/create-release@v1
91
77
tag_name : ${{ github.ref }}
92
78
release_name : Release ${{ github.ref }}
93
79
draft : false
94
- body : |
95
- ## Last 10 commits:
96
- ${{ get-contributors.outputs }}
97
- ## In this version
98
- ${{ steps.create-release-notes.outputs.release-notes }}
99
80
prerelease : ${{ contains(github.ref, 'alpha') }}
100
81
101
82
You can’t perform that action at this time.
0 commit comments