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 }}