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 45e5d1c commit cef912cCopy full SHA for cef912c
.github/workflows/ci.yml
@@ -7,6 +7,11 @@ on:
7
tags:
8
- "v*"
9
10
+permissions:
11
+ id-token: write
12
+ contents: write
13
+ packages: write
14
+
15
jobs:
16
build:
17
name: CI Build
@@ -88,8 +93,13 @@ jobs:
88
93
uses: actions/download-artifact@v6
89
94
with:
90
95
name: packages
96
+ - name: NuGet Login
97
+ uses: NuGet/login@v1
98
+ id: login
99
+ with:
100
+ user: phnx47
91
101
- name: Push to nuget.org
92
102
run: |
103
dotnet nuget push "*.nupkg" \
- -k ${{ secrets.NUGET_DEPLOY_KEY }} \
104
+ -k ${{ steps.login.outputs.NUGET_API_KEY }} \
105
-s https://api.nuget.org/v3/index.json
0 commit comments