Skip to content

Commit

Permalink
Workflow Change
Browse files Browse the repository at this point in the history
  • Loading branch information
jmayer913 committed Jun 23, 2024
1 parent 83cba5a commit 1fe62aa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/mainworkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"

0 comments on commit 1fe62aa

Please sign in to comment.