Skip to content

Merge branch 'main' of https://github.com/CheatSOL/CheatSOL-BE #2

Merge branch 'main' of https://github.com/CheatSOL/CheatSOL-BE

Merge branch 'main' of https://github.com/CheatSOL/CheatSOL-BE #2

Workflow file for this run

name: Deploy to EC2
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: |
npm install
npm ci
- name: Create .env file
run: |
echo "PROD_DB=${{ secrets.PROD_DB }}" >> .env
echo "DEVELOP_DB=${{ secrets.DEVELOP_DB }}" >> .env
echo "ENVIRONMENT=${{ secrets.ENVIRONMENT }}" >> .env
echo "DB_USER=${{ secrets.DB_USER }}" >> .env
echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> .env
echo "DB_HOST=${{ secrets.DB_HOST }}" >> .env
echo "DB_PORT=${{ secrets.DB_PORT }}" >> .env
echo "KIS_APP_KEY=${{ secrets.KIS_APP_KEY}}" >> .env
echo "KIS_SECRECT_KEY=${{ secrets.KIS_SECRECT_KEY }}" >> .env
echo "PORT=${{ secrets.PORT }}" >> .env
# Build step removed since there is no build script
- name: Copy files via SSH
uses: appleboy/scp-action@master
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USER }}
key: ${{ secrets.EC2_KEY }}
port: 22
source: "."
target: "/home/ec2-user/CheatSOL-BE"
- name: Execute remote commands via SSH
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USER }}
key: ${{ secrets.EC2_KEY }}
port: 22
script: |
# Install Node.js and pm2 on Amazon Linux
curl -sL https://rpm.nodesource.com/setup_20.x | sudo bash -
sudo yum install -y nodejs
sudo npm install -g pm2
# Navigate to the application directory
cd /home/ec2-user/CheatSOL-BE
# Install project dependencies
npm install --production
# Restart or start the application with pm2
pm2 stop all
pm2 delete all
pm2 start bin/www