From 42aee537b893352857d15347e0aaed4b522b59e0 Mon Sep 17 00:00:00 2001 From: Serge K Date: Sun, 26 Feb 2023 14:15:45 +0700 Subject: [PATCH] ci: fix push to NuGet --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f331d56..cbda373b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,6 @@ jobs: - name: 📥 Download artifacts uses: actions/download-artifact@v3 with: - name: nupkg + name: nupkgs - name: 📦 Push to NuGet - run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json + run: dotnet nuget push "**/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json