change staging key ref #7
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: Shutdown Tomcat if it is started | |
- name: Shutdown Tomcat if it is up | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.STAGING_HOST }} | |
username: ${{ secrets.STAGING_USER }} | |
key: ${{ secrets.STAGING_PASSWORD }} | |
script: | | |
if pgrep -f "org.apache.catalina.startup.Bootstrap" > /dev/null; then | |
echo "Tomcat is running. Shutting it down..." | |
sh /usr/local/tomcat/apache-tomcat-7.0.108/bin/shutdown.sh | |
else | |
echo "Tomcat is not running." | |
fi | |
# Step 5: Deploy to Staging Server | |
- name: Deploy to Staging | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.STAGING_HOST }} | |
username: ${{ secrets.STAGING_USER }} | |
key: ${{ secrets.STAGING_PASSWORD }} | |
source: "NMSReportingSuite/target/*.war" | |
target: /usr/local/tomcat/apache-tomcat-7.0.108/webapps | |
# Step 6: Restart Application (if needed) | |
- name: Restart Tomcat | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.STAGING_HOST }} | |
username: ${{ secrets.STAGING_USER }} | |
key: ${{ secrets.STAGING_PASSWORD }} | |
script: | | |
if ! pgrep -f "org.apache.catalina.startup.Bootstrap" > /dev/null; then | |
echo "Tomcat is not running. Starting it up..." | |
sh /usr/local/tomcat/apache-tomcat-7.0.108/bin/startup.sh | |
else | |
echo "Tomcat is already running." | |
fi |