From 04d0ee14ba5091fef4a75a53754edb78aabeca85 Mon Sep 17 00:00:00 2001 From: Yash Date: Sun, 25 Aug 2024 21:24:46 +0530 Subject: [PATCH] fix: buildspec file --- .github/workflows/buildspec-p3.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildspec-p3.yml b/.github/workflows/buildspec-p3.yml index 67199b1..640e967 100644 --- a/.github/workflows/buildspec-p3.yml +++ b/.github/workflows/buildspec-p3.yml @@ -18,18 +18,18 @@ jobs: with: node-version: "20.x" - name: "Install Angular CLI" - working-directory: ./client + working-directory: ./ run: npm install -g @angular/cli - name: "Install Netlify CLI" run : npm install netlify-cli -g - name: "Install NPM Dependencies" - working-directory: ./client + working-directory: ./ run: npm ci - name: "Create Build File" - working-directory: ./client + working-directory: ./ run: npm run build - name: "Deploy Build On Netlify" - working-directory: ./client + working-directory: ./ env: NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} NETLIFY_API_TOKEN: ${{ secrets.NETLIFY_API_TOKEN }}