We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae922c4 commit 72e8368Copy full SHA for 72e8368
.github/workflows/ci.yml
@@ -36,7 +36,7 @@ jobs:
36
- name: Publish to NuGet
37
if: github.event_name == 'push'
38
run: |
39
- if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$" ) {
+ if ( "${{github.ref}}" -match "^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+$" ) {
40
dotnet nuget push build\packages\**\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}} --no-symbols true
41
} else {
42
echo "publish is only enabled by tagging with a release tag"
0 commit comments