Skip to content

conditional statement for grunt cli #14

conditional statement for grunt cli

conditional statement for grunt cli #14

name: Build and Deploy to Staging
on:
push:
branches:
- deployment
jobs:
build-and-deploy:
runs-on: ubuntu-20.04
steps:
# Step 1: Check out the code
- name: Checkout repository
uses: actions/checkout@v3
# Step 2: Set up Java
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
# Step 3: Build the JAR
- name: Build with Maven
run: mvn clean install -f NMSReportingSuite/pom.xml
# Step 4: Install Grunt CLI only if not already installed
- name: Install Grunt CLI
run: |
if ! command -v grunt &> /dev/null; then
npm install -g grunt-cli
else
echo "Grunt CLI is already installed"
fi
# Step 5: Build FrontEnd 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
app/*