Skip to content

feat: add workflow

feat: add workflow #1

Workflow file for this run

name: Deploy
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Deploy
run: |
cd /var/www/quantum-framework
git pull origin main
npm install
npm run build
sudo systemctl restart nginx