From 2e92fb30a6734938558e6966b5b2e4dad4f20b64 Mon Sep 17 00:00:00 2001 From: Christian Sauer Date: Fri, 24 Jan 2025 11:19:32 +0100 Subject: [PATCH] fix: use dotnet nuget instead of pure nuget --- .github/workflows/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 845c7b4..a44bee0 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -50,7 +50,7 @@ jobs: run: dotnet build --configuration Release --no-restore working-directory: AutomaticInterface - name: Nuget - run: nuget push **\release\**\AutomaticInterface.*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}} + run: dotnet nuget push **\release\**\AutomaticInterface.*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}} - name: Get version id: package_version uses: KageKirin/get-csproj-version@v0