From bee08c41b4d5143a21511d1897844dc3a3f6e033 Mon Sep 17 00:00:00 2001 From: singatias <52874619+singatias@users.noreply.github.com> Date: Sat, 4 Nov 2023 16:21:46 -0400 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index d9efd45..a62fb79 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -30,7 +30,8 @@ jobs: - name: Build and Pack NuGet Package run: dotnet pack -c Release -o ./artifacts - - name: Publish to NuGet - run: dotnet nuget push ./artifacts/*.nupkg --source https://nuget.pkg.github.com/singatias/index.json --api-key ${{ secrets.NUGET_API_KEY }} + - name: Publish to NuGet.org + run: | + dotnet nuget push ./artifacts/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} env: NUGET_VERSION: ${{ steps.extract_version.outputs.release_version }}