From 13f42fe6dfbc96798205f276eb8052cfeb70ed04 Mon Sep 17 00:00:00 2001 From: Ugo Lattanzi Date: Tue, 10 Mar 2020 15:06:03 +0100 Subject: [PATCH] ops --- .github/workflows/dotnetcore.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index e1315215..461a6936 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -43,5 +43,9 @@ jobs: run: ./NuGetPack.bat shell: bash - name: Publish nuget - run: dotnet nuget push @$f --api-key ${{ secrets.NuGetApiKey}} --source https://api.nuget.org/v3/index.json + run: | + for f in ./packages/*.nupkg + do + dotnet nuget push @$f --api-key ${{ secrets.NuGetApiKey}} --source https://api.nuget.org/v3/index.json + done shell: bash