From 858d28cbade817c16901ff0eed339820fdb71669 Mon Sep 17 00:00:00 2001 From: aliyaghini <62905408+aliyaghini@users.noreply.github.com> Date: Tue, 13 Aug 2024 10:59:57 +0330 Subject: [PATCH] fix(CI): Update project routes in dotnetCI_release.yml --- .github/workflows/dotnetCI_release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dotnetCI_release.yml b/.github/workflows/dotnetCI_release.yml index 633af3d..2827651 100644 --- a/.github/workflows/dotnetCI_release.yml +++ b/.github/workflows/dotnetCI_release.yml @@ -8,6 +8,7 @@ on: jobs: version: + needs: [build, test] runs-on: ubuntu-latest permissions: contents: write @@ -48,11 +49,11 @@ jobs: with: dotnet-version: '6.0.x' - name: Install dependencies - working-directory: phase04/Project - run: dotnet restore ./FullTextSearchProject.sln + working-directory: AnalysisData + run: dotnet restore ./AnalysisData.sln - name: Build - working-directory: phase04/Project - run: dotnet build ./FullTextSearchProject.sln + working-directory: AnalysisData + run: dotnet build ./AnalysisData.sln - name: Test with the dotnet CLI - working-directory: phase04/Project - run: dotnet test ./FullTextSearchProject.sln + working-directory: AnalysisData + run: dotnet test ./AnalysisData.sln