We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c789f4d commit 958bca7Copy full SHA for 958bca7
1 file changed
.github/workflows/ci.yml
@@ -43,8 +43,6 @@ jobs:
43
needs: build
44
runs-on: ubuntu-latest
45
if: startsWith(github.ref, 'refs/tags/')
46
- permissions:
47
- id-token: write
48
steps:
49
- name: Download artifacts
50
uses: actions/download-artifact@v4
@@ -57,11 +55,5 @@ jobs:
57
55
with:
58
56
dotnet-version: 10.0.x
59
60
- - name: Login to NuGet
61
- id: login
62
- uses: NuGet/login@v1
63
- with:
64
- nuget-server-url: https://api.nuget.org/v3/index.json
65
-
66
- name: Push to NuGet
67
- run: dotnet nuget push ./artifacts/*.nupkg --api-key ${{ steps.login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
+ run: dotnet nuget push ./artifacts/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
0 commit comments