We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f3d90e commit 170dc1fCopy full SHA for 170dc1f
1 file changed
.github/workflows/cd.yml
@@ -28,7 +28,8 @@ jobs:
28
# run: dotnet test
29
30
- name: Add GitHub NuGet source
31
- run: dotnet nuget add source "https://nuget.pkg.github.com/01Dri/index.json" --name "github" --username "01Dri" --password "${{ secrets.DEFAULT_TOKEN }}" --store-password-in-clear-text
+ run: dotnet nuget add source "https://nuget.pkg.github.com/01Dri/index.json" --name "github" --username "01Dri" --password "${{ secrets.NUGET_GITHUB_TOKEN }}" --store-password-in-clear-text
32
33
- name: Publish to GitHub Packages (NuGet)
34
- run: dotnet nuget push **/bin/Release/*.nupkg --source "github" --api-key "${{ secrets.DEFAULT_TOKEN }}"
+ run: dotnet nuget push **/bin/Release/*.nupkg --source "github" --api-key "${{ secrets.NUGET_GITHUB_TOKEN }}"
35
+
0 commit comments