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 a0fd35a commit 06c1494Copy full SHA for 06c1494
.github/workflows/build.yml
@@ -28,7 +28,7 @@ jobs:
28
dotnet nuget add source --username HelloWRC --password $env:GHPKG_KEY --store-password-in-clear-text --name github "https://nuget.pkg.github.com/ClassIsland/index.json"
29
dotnet nuget push .\out\*.nupkg -k $env:GHPKG_KEY --source "github" --skip-duplicate
30
- name: Upload Nuget packages to NuGet Gallery
31
- if: ${{ github.event.inputs.release_tag && github.event_name != 'pull_request' }}
+ if: ${{ startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request' }}
32
env:
33
NUGET_KEY: ${{ secrets.NUGET_ORG_KEY }}
34
run: |
0 commit comments