Skip to content

feat: enhance dashboard UI with improved spacing, button sizes, and h… #13

feat: enhance dashboard UI with improved spacing, button sizes, and h…

feat: enhance dashboard UI with improved spacing, button sizes, and h… #13

Workflow file for this run

name: Deploy to EC2
on:
push:
branches:
- main # Runs when you push to main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Deploy to EC2
uses: appleboy/ssh-action@v0.1.10
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USER }}
key: ${{ secrets.EC2_SSH_KEY }}
script: |
cd ~/app # directory on EC2 where your code lives
git pull origin main
npm install --legacy-peer-deps
npm run build
pm2 restart all || pm2 start npm -- start