From ad58fe6a5f46e6e57b85328ad45e4728a791a460 Mon Sep 17 00:00:00 2001 From: Harry Cordewener Date: Sun, 7 Jan 2024 17:00:53 -0600 Subject: [PATCH] Fix nuget address from template. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 751b36d..3ac3666 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: - name: Pack run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output . - name: Push to Github - run: dotnet nuget push "**/*.nupkg" --skip-duplicate --source https://nuget.pkg.github.com/acraven/index.json --api-key ${GITHUB_TOKEN} + run: dotnet nuget push "**/*.nupkg" --skip-duplicate --source https://nuget.pkg.github.com/HarryCordewener/index.json --api-key ${GITHUB_TOKEN} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Push to NuGet