We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdcf148 commit 03eb582Copy full SHA for 03eb582
1 file changed
.github/workflows/publish-nuget-org-release.yml
@@ -11,12 +11,15 @@ jobs:
11
permissions:
12
id-token: write # enable GitHub OIDC token issuance for this job
13
outputs:
14
- nuget_api_key: ${{ steps.login.outputs.NUGET_API_KEY }}
+ nuget_api_key: ${{ steps.secretworkaround.outputs.NUGET_API_KEY }}
15
steps:
16
- uses: NuGet/login@v1
17
id: login
18
with:
19
user: ChrisSimmons
20
+ - name: Save Secret
21
+ id: secretworkaround
22
+ run: echo "NUGET_API_KEY=${{ steps.login.outputs.NUGET_API_KEY }}" >> "$GITHUB_OUTPUT"
23
push:
24
needs:
25
- nuget-oidc
0 commit comments