From 2e9f5f117090f410682957cb945e7bed787b40e3 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Fri, 17 Feb 2023 00:23:17 +0100 Subject: [PATCH] Remove --output build --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c7725b..5356f8d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: dotnet-version: '7.0.x' - name: Build solution - run: dotnet pack FFMpegCore.sln --output build -c Release + run: dotnet pack FFMpegCore.sln -c Release - name: Publish NuGet package run: dotnet nuget push build/*.nupkg --source nuget.org --api-key ${{ secrets.NUGET_TOKEN }}