From a52c4c86c65569e27a019dad402fa12f8be8beee Mon Sep 17 00:00:00 2001 From: Kawshar Patel <68301178+kwshr@users.noreply.github.com> Date: Wed, 1 May 2024 20:35:19 -0400 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 84757263..af94a38d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,13 +36,16 @@ jobs: run: git config --global user.email rajpunjabi47@yahoo.in && git config --global user.name "Raj Punjabi" - name: Install Dependencies - run: npm install --save gh-pages + run: | + cd frontEnd + npm install --save gh-pages - name: build application run: | - cd .. + cd frontEnd/node_modules npm run build - name: Run Deploy Script - run: npm run deploy - working-directory: ./frontEnd/build + run: | + cd frontEnd + npm run deploy