From 59e24eab29ab9be05e706fd7499ff0d0aaefe0d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20W=C3=A4scher?= Date: Sat, 11 May 2024 00:10:23 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2f934e..824071b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,13 +41,13 @@ jobs: run: dotnet restore src/FluentDragDrop.sln - name: Build - run: dotnet build --no-restore --configuration=Release /p:Version=${{steps.gitversion.outputs.semVer}} + run: dotnet build src --no-restore --configuration=Release /p:Version=${{steps.gitversion.outputs.semVer}} - name: Test - run: dotnet test --no-build --configuration=Release --verbosity normal + run: dotnet test src --no-build --configuration=Release --verbosity normal - name: pack nuget packages - run: dotnet pack --output nupkgs --configuration=Release --no-restore --no-build /p:PackageVersion=${{steps.gitversion.outputs.semVer}} + run: dotnet pack src --output nupkgs --configuration=Release --no-restore --no-build /p:PackageVersion=${{steps.gitversion.outputs.semVer}} - name: Create a GitHub release uses: ncipollo/release-action@v1