From 14b16a7e2740705d866b30b5c09ef53681226c31 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 8 Feb 2023 09:58:55 -0700 Subject: [PATCH] ci: fix path to nuget packages --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d57ca81d..2e7f7010 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -87,5 +87,5 @@ jobs: run: | nuget sources add -name github -source https://nuget.pkg.github.com/pepperdash/index.json -username Pepperdash -password ${{ secrets.GITHUB_TOKEN }} nuget setApiKey ${{ secrets.NUGET_API_KEY }} - nuget push ".\package\PepperDashCore.${{ steps.setVersion.outputs.version }}.nupkg" -Source github - nuget push ".\package\PepperDashCore.${{ steps.setVersion.outputs.version }}.nupkg" -Source https://api.nuget.org/v3/index.json \ No newline at end of file + nuget push .\output\*.nupkg -Source github + nuget push .\output\*.nupkg -Source https://api.nuget.org/v3/index.json \ No newline at end of file