From 05d5bb1b4d408d01a0f9f4d0fe286902fd811ef7 Mon Sep 17 00:00:00 2001 From: Phil Haack Date: Fri, 17 Jan 2025 10:43:55 -0800 Subject: [PATCH] Wrestling with GitHub Actions. I will win! --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 8d696d3..e10ce29 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -107,7 +107,7 @@ jobs: - uses: actions/download-artifact@v4 with: name: nuget - path: ${{ env.PackageDirectory }} + path: . - name: Setup .NET Core uses: actions/setup-dotnet@v4 @@ -118,5 +118,5 @@ jobs: # Use --skip-duplicate to prevent errors if a package with the same version already exists. # If you retry a failed workflow, already published packages will be skipped without error. - name: Publish NuGet package - run: bin/publish ${{ env.PackageDirectory }} ${{ secrets.NUGET_API_KEY }} + run: bin/publish . ${{ secrets.NUGET_API_KEY }} shell: bash \ No newline at end of file