Skip to content

Chore: websocket setting #3

Chore: websocket setting

Chore: websocket setting #3

Workflow file for this run

name: Deploy Frontend
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to EC2
uses: appleboy/[email protected]
with:
host: ${{ secrets.REMOTE_IP }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_PRIVATE_KEY }}
port: ${{ secrets.REMOTE_SSH_PORT }}
script: |
cd /home/ubuntu/client # 프로젝트 디렉토리
git pull origin main
cd client
npm install
npm run build