From 339a4565d25714f774dfddffcb697da1f2f4a047 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Wed, 15 Jan 2025 23:10:37 -0500 Subject: [PATCH] Fix build issue in backend-ci.yml --- .github/workflows/backend-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 65248a2..2bea85c 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -28,6 +28,7 @@ jobs: # Run dotnet build and publish - name: dotnet build and publish run: | + cd backend dotnet restore dotnet build --configuration Release dotnet publish --configuration Release --output '${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/backend-app' @@ -38,4 +39,5 @@ jobs: with: app-name: ${{ env.AZURE_WEBAPP_NAME }} publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + B package: '${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/backend-app'