From 83cba5a9417094f1d50a82a064ea245adae9922d Mon Sep 17 00:00:00 2001 From: jmayer913 <72579603+jmayer913@users.noreply.github.com> Date: Sun, 23 Jun 2024 11:39:59 -0400 Subject: [PATCH] Workflow Change --- .github/workflows/mainworkflow.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mainworkflow.yml b/.github/workflows/mainworkflow.yml index 4e7e187..ac9c0bd 100644 --- a/.github/workflows/mainworkflow.yml +++ b/.github/workflows/mainworkflow.yml @@ -18,8 +18,9 @@ jobs: runs-on: windows-latest steps: - - name: Add Nuget Sources + - name: Add GitHub Nuget Source run: dotnet nuget add source --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/jmayer913/index.json" + - name: Add Nuget Source run: dotnet nuget add source --username USERNAME --password ${{ secrets.NUGET_TOKEN }} --store-password-in-clear-text --name nugetsrc "https://api.nuget.org/v3/index.json" continue-on-error: true - name: Checkout