Merge pull request #44 from smswithoutborders/develop #31
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: Deploy SMSWithoutBorders Visibility Dashboard on Server (staging) | |
on: | |
push: | |
branches: | |
- staging | |
jobs: | |
deploy: | |
name: Execute Deployment Script on Server | |
runs-on: ubuntu-latest | |
environment: | |
name: staging | |
url: https://staging.smswithoutborders.com:18550 | |
steps: | |
- name: Execute Remote SSH Commands | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
script: | | |
set -e | |
echo "============================" | |
echo "π Updating repository ..." | |
echo "============================" | |
cd ${{ secrets.PROJECT_PATH }} | |
if ! git pull; then | |
echo "β Error updating repository!" | |
exit 1 | |
fi | |
echo "===============================" | |
echo "β Repository update complete" | |
echo "===============================" | |
echo "=========================" | |
echo "π Building project ..." | |
echo "=========================" | |
if ! ${{ secrets.BUILD_CMD }}; then | |
echo "β Error building project!" | |
exit 1 | |
fi | |
echo "===========================" | |
echo "β Project build complete" | |
echo "===========================" | |
echo "=============================" | |
echo "Cleaning up staging builds ..." | |
echo "=============================" | |
if ! ${{ secrets.CLEANUP_CMD }}; then | |
echo "β Error cleaning up builds!" | |
exit 1 | |
fi | |
echo "=============================" | |
echo "β Cleanup complete" | |
echo "=============================" | |