Skip to content

Commit

Permalink
Fixed myget feed
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje committed Nov 14, 2023
1 parent 8448240 commit 7fd1813
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/TheAnswer.Myget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
- name: Publish nupkg and snupkg to NuGet.org
run: |
foreach($file in (Get-ChildItem package -Recurse -Include *.nupkg)) {
dotnet nuget push $file --api-key "${{ secrets.WRAPTHATMYGET }}" --source https://www.myget.org/feed/Packages/hermit --skip-duplicate
dotnet nuget push $file --api-key "${{ secrets.WRAPTHATMYGET }}" --source https://www.myget.org/F/hermit/api/v3/index.json --skip-duplicate
}
foreach($file in (Get-ChildItem "package" -Recurse -Include *.snupkg)) {
dotnet nuget push $file --api-key "${{ secrets.WRAPTHATMYGET }}" --source https://www.myget.org/feed/Packages/hermit --skip-duplicate
dotnet nuget push $file --api-key "${{ secrets.WRAPTHATMYGET }}" --source https://www.myget.org/F/hermit/api/v3/index.json --skip-duplicate
}

0 comments on commit 7fd1813

Please sign in to comment.