path change to get files #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
npm install | |
grunt package | |
# Step 5: Download Action Button | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: my-artifact | |
path: | | |
NMSReportingSuite/target/*.war | |
app/index.html | |
app/scripts/ | |
app/views/ | |
app/styles/ | |
app/dist/ | |