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 ccb7d22 commit 77ffccbCopy full SHA for 77ffccb
.github/workflows/ci.yml
@@ -15,6 +15,11 @@ env:
15
TEST_DB_PASS: "Password12!"
16
PKG_VERSION: "0.0.0"
17
18
+permissions:
19
+ id-token: write
20
+ contents: write
21
+ packages: write
22
+
23
jobs:
24
build:
25
name: Build, Test & Pack
@@ -128,8 +133,13 @@ jobs:
128
133
uses: actions/download-artifact@v8
129
134
with:
130
135
name: packages
136
+ - name: NuGet Login
137
+ uses: NuGet/login@v1
138
+ id: login
139
+ with:
140
+ user: ${{ github.repository_owner }}
131
141
- name: Push to NuGet
132
142
run: |
143
dotnet nuget push "*.nupkg" \
- -k ${{ secrets.NUGET_KEY }} \
144
+ -k ${{ steps.login.outputs.NUGET_API_KEY }} \
145
-s https://api.nuget.org/v3/index.json
0 commit comments