Skip to content

Commit c3a626d

Browse files
committed
chore: Deploy fix - Build command updated
1 parent 135cc80 commit c3a626d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Install Dependencies
5353
run: npm install
5454
- name: Build
55-
run: ng build --base-href /vf-angular/ --configuration production
55+
run: npm run build:ghpages
5656
- name: Upload Build Artifacts
5757
uses: actions/upload-artifact@v4
5858
with:

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
7-
"build": "ng build --configuration production",
7+
"build": "ng build",
8+
"build:ghpages": "ng build --configuration production --base-href /vf-angular/",
89
"build:dev": "ng build --configuration development",
910
"watch": "ng build --watch --configuration development",
1011
"test": "ng test",

0 commit comments

Comments
 (0)