28 lines
522 B
YAML
28 lines
522 B
YAML
name: Build and Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Deploy
|
|
run: |
|
|
cp -r dist/ /home/hyoseung/english/back/dist/
|
|
cd /home/hyoseung/english/back
|
|
pm2 restart english-back || pm2 start dist/main.js --name english-back
|
|
pm2 save
|