Files
hihala-dashboard/.gitea/workflows/deploy.yml
fahed 6cf0bf626b
All checks were successful
Deploy HiHala Dashboard / deploy (push) Successful in 6s
Simplify CI/CD to deploy static frontend only
Remove server deployment, dependency install, and systemd restart.
The app connects directly to NocoDB from the browser.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 17:36:46 +03:00

24 lines
460 B
YAML

name: Deploy HiHala Dashboard
on:
push:
branches: [main, master]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Build frontend
run: |
npm ci
npm run build
- name: Deploy to server
run: |
rsync -a --delete build/ /opt/apps/hihala-dashboard/build/