diff --git a/.github/workflows/mainworkflow.yml b/.github/workflows/mainworkflow.yml index ac9c0bd..9de5399 100644 --- a/.github/workflows/mainworkflow.yml +++ b/.github/workflows/mainworkflow.yml @@ -20,8 +20,6 @@ jobs: steps: - 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 uses: actions/checkout@v4 @@ -40,4 +38,4 @@ jobs: - name: GitHub Publish run: dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source "github" - name: NuGet Publish - run: dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.NUGET_TOKEN }} --source "nugetsrc" + run: dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.NUGET_TOKEN }} --source "https://api.nuget.org/v3/index.json"