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 }