From 276fa566c4025b1d04d173f3040976467177a656 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 8 Feb 2023 10:39:01 -0700 Subject: [PATCH] ci: add username/password back for github --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 6839ea84..23b077a4 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -85,10 +85,10 @@ jobs: tag: ${{ steps.setVersion.outputs.version }} - name: Setup Nuget run: | - nuget sources add -name github -source https://nuget.pkg.github.com/pepperdash/index.json + nuget sources add -name github -source https://nuget.pkg.github.com/pepperdash/index.json -username pepperdash -password ${{ secrets.GITHUB_TOKEN }} nuget setApiKey ${{ secrets.GITHUB_TOKEN }} -Source github nuget setApiKey ${{ secrets.NUGET_API_KEY }} -Source https://api.nuget.org/v3/index.json - name: Publish to Nuget run: nuget push .\output\*.nupkg -Source https://api.nuget.org/v3/index.json - - name: Public to Github Nuget + - name: Publish to Github Nuget run: nuget push .\output\*.nupkg -Source github \ No newline at end of file