From 5427283f88408967423b16236d279104183cf7ff Mon Sep 17 00:00:00 2001 From: Mandar-Beehyv Date: Wed, 8 Jan 2025 14:53:59 +0530 Subject: [PATCH] adding frontend in yaml --- .github/workflows/NMSReportingSuite-deployment.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/NMSReportingSuite-deployment.yaml b/.github/workflows/NMSReportingSuite-deployment.yaml index abca4dd1..8436aca6 100644 --- a/.github/workflows/NMSReportingSuite-deployment.yaml +++ b/.github/workflows/NMSReportingSuite-deployment.yaml @@ -23,9 +23,18 @@ jobs: - name: Build with Maven run: mvn clean install -f NMSReportingSuite/pom.xml + # Step 4: Build FrontEnd JS files + - name: Install Frontend Dependencies and Build with Grunt + run: | + cd app + grunt package + + # Step 5: Download Action Button - uses: actions/upload-artifact@v4 with: name: my-artifact - path: NMSReportingSuite/target/*.war + path: | + NMSReportingSuite/target/*.war + app/*