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 e287c9b commit a144802Copy full SHA for a144802
.github/workflows/buildandpublish.yml
@@ -3,8 +3,8 @@ name: Publish to NuGet
3
on:
4
push:
5
tags:
6
- - 'v*.*.*'
7
- - 'v*.*.*-*' # Trigger on tags matching vX.Y.Z or vX.Y.Z-prerelease
+ - '*.*.*'
+ - '*.*.*-*' # Trigger on tags matching vX.Y.Z or vX.Y.Z-prerelease
8
9
jobs:
10
build:
@@ -91,4 +91,4 @@ jobs:
91
92
- name: Publish release to NuGet.org
93
if: steps.prerelease.outputs.IS_PRERELEASE == 'false'
94
- run: dotnet nuget push "*.nupkg" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
+ run: dotnet nuget push "*.nupkg" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
0 commit comments