From b2a14c17c57cd48355556451631e48903ad0d376 Mon Sep 17 00:00:00 2001 From: Michael Bowen Date: Tue, 5 Sep 2023 15:37:36 -0700 Subject: [PATCH] Update release.yml (#1523) add shell: pwsh, so release to nuget knows which shell to use --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c261b2d52..69b904234 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,6 +61,7 @@ jobs: additional-denied-words: '' - name: Publish NuGet package + shell: pwsh run: | foreach($file in (Get-ChildItem "${{ github.workspace }}/artifacts" -Recurse -Include *.nupkg)) { dotnet nuget push $file --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate