From 7fd1813a9f109a567a4e250f8d993e407a840775 Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Tue, 14 Nov 2023 11:48:54 +0100 Subject: [PATCH] Fixed myget feed --- .github/workflows/TheAnswer.Myget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/TheAnswer.Myget.yml b/.github/workflows/TheAnswer.Myget.yml index d7e8b3f..3e70266 100644 --- a/.github/workflows/TheAnswer.Myget.yml +++ b/.github/workflows/TheAnswer.Myget.yml @@ -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 }