File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 9
9
steps :
10
10
- name : Checkout
11
11
uses : actions/checkout@v2
12
+ with :
13
+ fetch-depth : 0
12
14
- name : Verify commit exists in origin/main
15
+ run : git branch --remote --contains | grep origin/main
16
+ - name : Extract release notes
13
17
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
16
19
- name : Set VERSION variable from tag
17
20
run : echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
18
21
- name : Build
Original file line number Diff line number Diff line change
1
+ This file will be auto-generated by the release.yml workflow.
Original file line number Diff line number Diff line change 14
14
<RepositoryType >git</RepositoryType >
15
15
<RepositoryUrl >https://github.com/acraven/blog-nuget-workflow-github-actions</RepositoryUrl >
16
16
</PropertyGroup >
17
+
18
+ <Target Name =" PrepareReleaseNotes" BeforeTargets =" GenerateNuspec" >
19
+ <PropertyGroup >
20
+ <PackageDescription >$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../RELEASE-NOTES"))</PackageDescription >
21
+ </PropertyGroup >
22
+ </Target >
17
23
</Project >
You can’t perform that action at this time.
0 commit comments