From d076e62f33594afe79d8a711cce8232aff3876ac Mon Sep 17 00:00:00 2001 From: realonepiecefreak Date: Sun, 27 Oct 2024 21:57:27 +0100 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d03c10..1a54fe6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,4 +31,6 @@ jobs: - name: Publish ImGui.Forms run: | - for %f in (*.nupkg) do dotnet nuget push %f --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate + foreach($file in (Get-ChildItem "nuget" -Recurse -Include *.nupkg)) { + dotnet nuget push $file --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate + }