From ddc13db29ffef2af494e47e296c1cd8c9b41add7 Mon Sep 17 00:00:00 2001 From: Immo Landwerth Date: Wed, 2 Oct 2024 11:18:22 -0700 Subject: [PATCH] Be more explicit about paths --- .github/workflows/cicd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 1d27f641..77fc331b 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -43,5 +43,6 @@ jobs: uses: actions/download-artifact@v4.1.7 with: name: bin + path: .artifacts/bin - run: | - dotnet nuget push bin\*.nupkg -s "https://nuget.pkg.github.com/terrajobst/index.json" -k ${{ secrets.GH_TOKEN }} + dotnet nuget push .artifacts/bin/*.nupkg -s "https://nuget.pkg.github.com/terrajobst/index.json" -k ${{ secrets.GH_TOKEN }}