We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb308e8 commit 5427283Copy full SHA for 5427283
.github/workflows/NMSReportingSuite-deployment.yaml
@@ -23,9 +23,18 @@ jobs:
23
- name: Build with Maven
24
run: mvn clean install -f NMSReportingSuite/pom.xml
25
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
33
- uses: actions/upload-artifact@v4
34
with:
35
name: my-artifact
- path: NMSReportingSuite/target/*.war
36
+ path: |
37
+ NMSReportingSuite/target/*.war
38
+ app/*
39
40
0 commit comments