From 064a157312285aa243c498e9790234f9083db41c Mon Sep 17 00:00:00 2001 From: Mateusz Skoczek Date: Thu, 15 Jan 2026 21:40:18 +0100 Subject: [PATCH] Change NuGet API key to use NUGET_REGISTRY_API_KEY --- .github/workflows/push_main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_main.yml b/.github/workflows/push_main.yml index 87d19c7..9d2650c 100644 --- a/.github/workflows/push_main.yml +++ b/.github/workflows/push_main.yml @@ -57,7 +57,7 @@ jobs: - name: Add source run: dotnet nuget add source --username TimetableDesigner --password ${{secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/TimetableDesigner/index.json" - name: Publish - run: dotnet nuget push ${{ github.workspace}}/nuget/*.nupkg --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate + run: dotnet nuget push ${{ github.workspace}}/nuget/*.nupkg --source "github" --api-key ${{ secrets.NUGET_REGISTRY_API_KEY }} --skip-duplicate - name: Create Release uses: actions/create-release@v1 env: