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 cceca14 commit cd77c6eCopy full SHA for cd77c6e
.github/workflows/release.yml
@@ -5,7 +5,7 @@ on:
5
tags: [ 'v*.*.*' ]
6
7
permissions:
8
- contents: read
+ contents: write
9
10
env:
11
DOTNET_NOLOGO: 1
@@ -68,3 +68,10 @@ jobs:
68
dotnet nuget push "*.nupkg" --api-key $env:NUGET_PUSH_KEY --source https://api.nuget.org/v3/index.json
69
70
NUGET_PUSH_KEY: ${{ secrets.NUGET_PUSH_KEY }}
71
+
72
+ - name: release
73
+ uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1, v0.1.15
74
+ if: always() && startsWith(github.ref, 'refs/tags/')
75
+ with:
76
+ name: 'VbaCompression ${{ github.ref_name }}'
77
+ body_path: ${{ github.workspace }}/src/Kavod.Vba.Compression/README.md
0 commit comments