We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7741b7f commit be701fcCopy full SHA for be701fc
.github/workflows/build.yml
@@ -35,9 +35,24 @@ jobs:
35
path: src/UnitTests/TestResults/*.trx
36
37
# Release
38
+ - name: Get tag message
39
+ if: github.ref_type == 'tag'
40
+ id: tag_message
41
+ run: |
42
+ {
43
+ echo "message<<EOF"
44
+ git fetch -f origin tag ${{github.ref_name}}
45
+ git tag -l ${{github.ref_name}} --format="%(contents)"
46
+ echo "EOF"
47
+ } >> "$GITHUB_OUTPUT"
48
- name: Create GitHub Release
49
if: github.ref_type == 'tag'
50
uses: softprops/action-gh-release@v2
51
+ with:
52
+ body: |
53
+ **[NuGet package](https://www.nuget.org/packages/TypedRest.CodeGeneration/${{steps.gitversion.outputs.nuGetVersion}})**
54
+ ## Changes
55
+ ${{steps.tag_message.outputs.message}}
56
57
# Publish
58
- name: Publish documentation
0 commit comments