ci: Switch to use REGISTRY_TOKEN
All checks were successful
Build-Chocolatey-Packages

This commit is contained in:
Adam Goldsmith 2023-03-25 18:50:31 -04:00
parent 76ed58abdc
commit 7949470e0e

View File

@ -32,7 +32,7 @@ jobs:
for package in */*.nupkg for package in */*.nupkg
do do
echo "Pushing $package" echo "Pushing $package"
dotnet nuget push --source "https://git.claremontmakerspace.org/api/packages/${{ github.repository_owner }}/nuget/index.json" --api-key "${{ secrets.GITHUB_TOKEN }}" "$package" --skip-duplicate dotnet nuget push --source "https://git.claremontmakerspace.org/api/packages/${{ github.repository_owner }}/nuget/index.json" --api-key "${{ secrets.REGISTRY_TOKEN }}" "$package" --skip-duplicate
done done
env: env:
DOTNET_CLI_TELEMETRY_OPTOUT: "true" DOTNET_CLI_TELEMETRY_OPTOUT: "true"