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 2b156d8 commit 65de4f3Copy full SHA for 65de4f3
.github/workflows/ci.yml
@@ -50,7 +50,9 @@ jobs:
50
51
- name: Push NuGet
52
if: |
53
- github.event.action == 'published'
+ startsWith(github.event.ref, 'refs/tags/')
54
+ || endsWith(github.event.ref, '/master')
55
+ || github.event.action == 'published'
56
shell: pwsh
57
run: dotnet nuget push **/*.nupkg --source $Env:SOURCE --api-key $Env:TOKEN --skip-duplicate
58
env:
0 commit comments