We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09887f3 commit b22cebdCopy full SHA for b22cebd
1 file changed
.github/workflows/build.yaml
@@ -81,3 +81,16 @@ jobs:
81
--no-symbols
82
env:
83
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
84
+
85
+ - name: Create Release
86
+ uses: ncipollo/release-action@v1
87
+ #url: https://github.com/ncipollo/release-action
88
+ if: startsWith(github.ref, 'refs/tags/release/')
89
+ with:
90
+ name: ${{ steps.stamp.outputs.version }}
91
+ prerelease: ${{ contains('-', steps.stamp.outputs.version) }}
92
+ draft: true
93
+ bodyFile: CHANGES.md
94
+ artifacts: ${{ runner.temp }}/dist/*nupkg
95
+ artifactErrorsFailBuild: true
96
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments