From 1f81d7e7445e3ed82b1cd9e67fb7eca80db9745e Mon Sep 17 00:00:00 2001 From: "Eric J. Smith" Date: Tue, 4 Aug 2020 10:26:37 -0500 Subject: [PATCH] Fix package source name --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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