Skip to content

Commit ca71c1c

Browse files
committed
What about Release Notes?
1 parent f02eda8 commit ca71c1c

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ jobs:
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
1214
- name: Verify commit exists in origin/main
15+
run: git branch --remote --contains | grep origin/main
16+
- name: Extract release notes
1317
run: |
14-
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
15-
git branch --remote --contains | grep origin/main
18+
git log --pretty=format:'%d %s' ${GITHUB_REF} | perl -pe 's| \(.*tag: v(\d+.\d+.\d+(-preview\d{3})?)(, .*?)*\)|\n## \1\n|g' > RELEASE-NOTES
1619
- name: Set VERSION variable from tag
1720
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
1821
- name: Build

RELEASE-NOTES

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file will be auto-generated by the release.yml workflow.

package/NuGet.Workflow/NuGet.Workflow.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,10 @@
1414
<RepositoryType>git</RepositoryType>
1515
<RepositoryUrl>https://github.com/acraven/blog-nuget-workflow-github-actions</RepositoryUrl>
1616
</PropertyGroup>
17+
18+
<Target Name="PrepareReleaseNotes" BeforeTargets="GenerateNuspec">
19+
<PropertyGroup>
20+
<PackageDescription>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../RELEASE-NOTES"))</PackageDescription>
21+
</PropertyGroup>
22+
</Target>
1723
</Project>

0 commit comments

Comments
 (0)