Commit 5e5591d 1 parent 6875bb1 commit 5e5591d Copy full SHA for 5e5591d
File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,18 @@ jobs:
43
43
/bin/bash -c ". ./beaglebone-envsetup.sh && bitbake yoe-sdk-image"
44
44
/bin/bash -c ". ./raspberrypi4-64-envsetup.sh && bitbake yoe-sdk-image"
45
45
- name : version
46
- run : echo "::set-output name=version::$(cat sources/meta-yoe/conf/distro/yoe.inc | grep 'DISTRO_VERSION =' | cut -d' ' -f 3)"
46
+ run : echo "::set-output name=version::$(printf ' - ' && cat sources/meta-yoe/conf/distro/yoe.inc | grep 'DISTRO_CODENAME =' | cut -d' ' -f 3 )"
47
47
id : version
48
48
- name : release
49
49
uses : actions/create-release@v1
50
+ uses : CSchoel/release-notes-from-changelog@v1
50
51
id : create_release
51
52
with :
52
- draft : false
53
+ draft : true
53
54
prerelease : false
54
- release_name : ${{ steps.version.outputs.version }}
55
+ release_name : ${{ github.ref }} ${{ steps.version.outputs.version }}
55
56
tag_name : ${{ github.ref }}
56
- body_path : CHANGELOG .md
57
+ body_path : RELEASE .md # generated by release-notes-from-changelog
57
58
env :
58
59
GITHUB_TOKEN : ${{ github.token }}
59
60
Original file line number Diff line number Diff line change
1
+ # release-notes-from-changelog
2
+
3
+ GitHub action that extracts release notes from an existing changelog.
4
+
5
+ Changes in this version:
You can’t perform that action at this time.
0 commit comments