From 354980e57a2b910d15f40b380c1b0eb1661c4b27 Mon Sep 17 00:00:00 2001 From: Tao Chen Date: Fri, 11 Aug 2023 11:34:50 -0700 Subject: [PATCH] Fix the memory pipeline build csproj file name (#154) ### Motivation and Context ### Description ### Contribution Checklist - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [Contribution Guidelines](https://github.com/microsoft/copilot-chat/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/copilot-chat/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone :smile: --- .github/workflows/memorypipeline-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/memorypipeline-build.yml b/.github/workflows/memorypipeline-build.yml index dfdaaad8f..55da75888 100644 --- a/.github/workflows/memorypipeline-build.yml +++ b/.github/workflows/memorypipeline-build.yml @@ -1,4 +1,4 @@ -name: Build SemanticMemoryPipelineService +name: Build CopilotChatMemoryPipelineService on: push: @@ -31,8 +31,8 @@ jobs: --password ${{ secrets.AZURE_DEVOPS_PAT }} \ --store-password-in-clear-text - - name: Build SemanticMemoryPipelineService + - name: Build CopilotChatMemoryPipelineService run: | - dotnet build memorypipeline/SemanticMemoryPipelineService.csproj \ + dotnet build memorypipeline/CopilotChatMemoryPipeline.csproj \ -c Release \ -v normal