diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f8e4db078..b92a1e454 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,9 +29,9 @@ jobs: - name: Package if: github.event_name != 'pull_request' run: dotnet pack Foundatio.sln --configuration Release --no-build - - name: Add GPR Source + - name: Add GitHub NuGet Source if: github.event_name != 'pull_request' - run: dotnet nuget add source https://nuget.pkg.github.com/foundatiofx/index.json --name GPR --username foundatiofx --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text + run: dotnet nuget add source https://nuget.pkg.github.com/foundatiofx/index.json --name GitHub --username foundatiofx --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text - name: Publish CI Packages if: github.event_name != 'pull_request' run: | @@ -39,7 +39,7 @@ jobs: echo "${0##*/}": Pushing $package... # GPR - dotnet nuget push $package --source GRP --skip-duplicate + dotnet nuget push $package --source GitHub --skip-duplicate # feedz (remove once GPR supports anonymous access) dotnet nuget push $package --source https://f.feedz.io/foundatio/foundatio/nuget --api-key ${{ secrets.FEEDZ_KEY }} --skip-duplicate