From 2bd8d81cc05d3a346adbac777be408b2af84a933 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 13 Dec 2024 22:22:53 +0530 Subject: [PATCH] Check outputPath in angular.json file --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 45b1df0..ba9727b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,16 +40,16 @@ jobs: run: npm ci - name: Build Angular app - run: npm run build -- --base-href=/angular-local-stenciljs/ + run: npm run build -- --configuration production - name: Upload build artifacts uses: actions/upload-pages-artifact@v3 with: name: github-pages - path: ./dist/angular-local-stenciljs - + path: ./dist/angular-cop + #Check outputPath in angular.json file - name: Deploy to GitHub Pages uses: actions/deploy-pages@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist/angular-local-stenciljs + publish_dir: ./dist/angular-cop