From 20cd174588ee4c3586bc966368067e610a7f464e Mon Sep 17 00:00:00 2001 From: nnayk <79224511+nnayk@users.noreply.github.com> Date: Tue, 5 Dec 2023 22:23:36 -0800 Subject: [PATCH] Fix pipeline dependency --- .github/workflows/backend-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index f0fd8c9..9e5682d 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -49,6 +49,7 @@ jobs: Backend/!venv/ test: runs-on: ubuntu-latest + needs: build defaults: run: working-directory: Backend @@ -74,7 +75,7 @@ jobs: deploy: runs-on: ubuntu-latest # Set the working directory for all steps in this job - needs: build + needs: test environment: name: "Production" url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}