Skip to content

Commit 03eb582

Browse files
committed
I'm sure this will work
1 parent cdcf148 commit 03eb582

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/publish-nuget-org-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ jobs:
1111
permissions:
1212
id-token: write # enable GitHub OIDC token issuance for this job
1313
outputs:
14-
nuget_api_key: ${{ steps.login.outputs.NUGET_API_KEY }}
14+
nuget_api_key: ${{ steps.secretworkaround.outputs.NUGET_API_KEY }}
1515
steps:
1616
- uses: NuGet/login@v1
1717
id: login
1818
with:
1919
user: ChrisSimmons
20+
- name: Save Secret
21+
id: secretworkaround
22+
run: echo "NUGET_API_KEY=${{ steps.login.outputs.NUGET_API_KEY }}" >> "$GITHUB_OUTPUT"
2023
push:
2124
needs:
2225
- nuget-oidc

0 commit comments

Comments
 (0)