We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e0dd14 commit 6787a67Copy full SHA for 6787a67
.github/workflows/nuget-publish.yml
@@ -39,12 +39,14 @@ jobs:
39
run: dotnet pack --configuration Release --no-build --output ./nupkg
40
41
- name: Nuget Login (OIDC + temp API Key)
42
+ if: matrix.dotnet-version == '9.x'
43
uses: Nuget/login@v1
44
id: login
45
with:
46
user: ${{secrets.NUGET_USER}}
47
48
- name: Nuget push
49
50
run: dotnet nuget push nupkg/*.nupkg --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
51
52
- name: Done
0 commit comments