File tree 2 files changed +24
-8
lines changed
2 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ permissions:
15
15
checks : write
16
16
17
17
jobs :
18
- check_release_notes :
19
- name : " Check Release Notes"
18
+ release_notes :
19
+ name : " Release Notes"
20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- uses : actions/checkout@v4
@@ -25,11 +25,21 @@ jobs:
25
25
- name : " Check Release Notes"
26
26
run : |
27
27
set -ex
28
- # python scripts/extract-release-notes.py --target-git-version
28
+ python scripts/extract-release-notes.py --target-git-version
29
29
shell : bash
30
+ - name : " Produce Release Notes"
31
+ run : |
32
+ set -ex
33
+ set -o pipefail
34
+ python3.8 ./scripts/extract-release-notes.py --target-git-version --append-mcr-images --describe-path-changes "./samples/constitution" | tee rel-notes.md
35
+ - name : " Upload .deb Package"
36
+ uses : actions/upload-artifact@v4
37
+ with :
38
+ name : relnotes
39
+ path : rel-notes.md
30
40
31
41
build_release :
32
- needs : check_release_notes
42
+ needs : release_notes
33
43
name : Release
34
44
strategy :
35
45
matrix :
@@ -91,10 +101,16 @@ jobs:
91
101
needs : build_release
92
102
runs-on : ubuntu-latest
93
103
steps :
94
- - name : Download All Artifacts
104
+ - name : Download Packages
95
105
uses : actions/download-artifact@v4
96
106
with :
97
107
path : pkg
98
108
pattern : pkg-*
99
109
merge-multiple : true
100
- - run : ls -R pkg
110
+ - name : Download Release notes
111
+ uses : actions/download-artifact@v4
112
+ with :
113
+ name : relnotes
114
+ - run : |
115
+ ls
116
+ ls -R pkg
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ 0.0.2 ]
8
+ ## [ 0.0.7 ]
9
9
10
- [ 0.0.2 ] : https://github.com/microsoft/CCF/releases/tag/ccf-0.0.2
10
+ [ 0.0.7 ] : https://github.com/microsoft/CCF/releases/tag/ccf-0.0.7
11
11
12
12
## [ 5.0.0-rc0]
13
13
You can’t perform that action at this time.
0 commit comments