Skip to content

Commit efa670e

Browse files
committed
Fix NuGet API key retrieval
Avoid 0xced to be interpreted as hexadecimal and turning into '3309' instead of '0xced'.
1 parent dd14d9a commit efa670e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,6 @@ jobs:
141141
uses: NuGet/login@v1
142142
id: nuget-login
143143
with:
144-
user: 0xced
144+
user: '0xced'
145145
- name: 🚀 Publish NuGet package on nuget.org
146146
run: dotnet nuget push "*.nupkg" --source https://api.nuget.org/v3/index.json --api-key "${{ steps.nuget-login.outputs.NUGET_API_KEY }}"

0 commit comments

Comments
 (0)