Skip to content

Commit 5427283

Browse files
committed
adding frontend in yaml
1 parent bb308e8 commit 5427283

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/NMSReportingSuite-deployment.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,18 @@ jobs:
2323
- name: Build with Maven
2424
run: mvn clean install -f NMSReportingSuite/pom.xml
2525

26+
# Step 4: Build FrontEnd JS files
27+
- name: Install Frontend Dependencies and Build with Grunt
28+
run: |
29+
cd app
30+
grunt package
31+
32+
# Step 5: Download Action Button
2633
- uses: actions/upload-artifact@v4
2734
with:
2835
name: my-artifact
29-
path: NMSReportingSuite/target/*.war
36+
path: |
37+
NMSReportingSuite/target/*.war
38+
app/*
3039
3140

0 commit comments

Comments
 (0)