From 3cae96f0eeacd649490db0bb136cdb17bcc023ed Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Wed, 28 Oct 2020 19:46:31 +0100 Subject: [PATCH] Explicit output dir --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bbdb97..79bad9d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,9 +15,9 @@ jobs: with: dotnet-version: 3.1 - name: Build solution -c Release - run: dotnet build + run: dotnet build --output build - name: Run unit tests run: dotnet test - name: Publish NuGet package - run: dotnet nuget push "*.nupkg" --source FFMpegCore/bin/Release --skip-duplicate + run: dotnet nuget push "*.nupkg" --source build --skip-duplicate