From a6cd9234a9b45a32bef7d9e033121c8a2b43c66d Mon Sep 17 00:00:00 2001 From: Rudi Thoeni Date: Fri, 13 Sep 2024 14:38:39 +0200 Subject: [PATCH] fixing gh action --- .github/workflows/main_api.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main_api.yml b/.github/workflows/main_api.yml index e055ed4..697aabd 100644 --- a/.github/workflows/main_api.yml +++ b/.github/workflows/main_api.yml @@ -25,9 +25,9 @@ jobs: dotnet-version: '8.0.x' dotnet-quality: 'preview' - name: Restore dependencies - run: dotnet restore ContentApiCore.sln - - name: Build ContentApiCore Solution - run: dotnet build ContentApiCore.sln --no-restore + run: dotnet restore opendatahub-content-api-core.sln + - name: Build opendatahub-content-api-core Solution + run: dotnet build opendatahub-content-api-core.sln --no-restore - name: Test run: dotnet test ContentApiCore --filter Category!=Integration