Deploy-to-EC2-Prod #9
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-to-EC2-Prod | |
on: workflow_dispatch | |
jobs: | |
deploy: | |
name: Deploy to EC2 manually | |
runs-on: ubuntu-latest | |
steps: | |
- name: Step 0 - Install APT Dependences | |
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev libxmlsec1-dev libxmlsec1-openssl libxml2 libxmlsec1 pkg-config | |
- name: Step 1 - Checkout the Files | |
uses: actions/checkout@v3 | |
- name: Step 2 - Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.9.0' | |
- name: Step 3 - Build Frontend | |
run: | | |
cd web-app | |
npm install | |
NODE_OPTIONS="--max-old-space-size=1512" npm run build | |
- name: Step 4 - Deploy to Prod Server | |
uses: easingthemes/ssh-deploy@main | |
env: | |
SOURCE: "/" | |
SSH_PRIVATE_KEY: ${{ secrets.AWS_PROD_EC2_SSH_KEY }} | |
REMOTE_HOST: ${{ secrets.AWS_PROD_HOST_DNS }} | |
REMOTE_USER: ${{ secrets.AWS_PROD_USERNAME }} | |
TARGET: ${{ secrets.AWS_PROD_TARGET_DIR }} | |
SCRIPT_AFTER: | | |
set -x | |
echo "Activate python env." | |
cd /home/ubuntu/smartapi | |
source .env/bin/activate | |
echo "Installing backend requirements." | |
pip install -Ur requirements.txt --no-cache-dir --ignore-installed --force-reinstall | |
echo "Restarting smartapi backend services..." | |
sudo systemctl restart smartapi@8000 | |
sleep 10 | |
sudo systemctl restart smartapi@8080 | |
echo "Smartapi backend services restarted!!!" | |
set +x | |
echo $RSYNC_STDOUT |