Skip to content

Commit 01a4211

Browse files
committed
relnotes
1 parent 86951b9 commit 01a4211

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

.github/workflows/release.yml

+22-6
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ permissions:
1515
checks: write
1616

1717
jobs:
18-
check_release_notes:
19-
name: "Check Release Notes"
18+
release_notes:
19+
name: "Release Notes"
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v4
@@ -25,11 +25,21 @@ jobs:
2525
- name: "Check Release Notes"
2626
run: |
2727
set -ex
28-
# python scripts/extract-release-notes.py --target-git-version
28+
python scripts/extract-release-notes.py --target-git-version
2929
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
3040

3141
build_release:
32-
needs: check_release_notes
42+
needs: release_notes
3343
name: Release
3444
strategy:
3545
matrix:
@@ -91,10 +101,16 @@ jobs:
91101
needs: build_release
92102
runs-on: ubuntu-latest
93103
steps:
94-
- name: Download All Artifacts
104+
- name: Download Packages
95105
uses: actions/download-artifact@v4
96106
with:
97107
path: pkg
98108
pattern: pkg-*
99109
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

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [0.0.2]
8+
## [0.0.7]
99

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
1111

1212
## [5.0.0-rc0]
1313

0 commit comments

Comments
 (0)