690322:2123 Fixing Deployment Errors
CI / CD Pipeline / build (push) Failing after 7m56s
CI / CD Pipeline / release (push) Has been skipped
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-03-22 21:23:08 +07:00
parent 5dad7ab7c1
commit 4dc14aba5b
28 changed files with 324 additions and 67 deletions
+62
View File
@@ -0,0 +1,62 @@
name: CI Pipeline
on:
push:
branches: [main, develop]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 🟢 Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📦 Install pnpm
run: npm install -g pnpm
- name: 📦 Install deps
run: pnpm install
# 🔴 LINT
- name: 🧹 Lint
run: pnpm lint
# 🔴 UUID CHECK
- name: 🔍 UUID misuse check
run: |
if grep -r --include="*.ts" --include="*.tsx" "parseInt(.*uuid" .; then
echo "❌ UUID misuse detected"
exit 1
fi
# 🔴 console.log CHECK
- name: 🔍 console.log check
run: |
if grep -r --include="*.ts" --include="*.tsx" "console.log" .; then
echo "❌ console.log detected"
exit 1
fi
# 🧪 TEST (Need to make sure tests run in root or individually)
- name: 🧪 Run Backend Tests
run: cd backend && pnpm test
- name: 🧪 Run Frontend Tests
run: cd frontend && pnpm test
# 🏗️ BUILD
- name: 🏗️ Build Backend
run: cd backend && pnpm build
- name: 🏗️ Build Frontend
run: cd frontend && pnpm build
- name: ✅ Done
run: echo "CI Passed"
+108
View File
@@ -0,0 +1,108 @@
name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest # ⚠️ ต้องตรงกับ Label ของ Runner ใน Gitea Settings (เช่น self-hosted)
steps:
- name: Deploy to QNAP via SSH
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
timeout: 1200s # 20 minutes total timeout (เพิ่มจาก 15 นาที)
command_timeout: 900s # 15 minutes per command timeout (เพิ่มจาก 10 นาที)
script_stop_signal: true # Stop script on error
script: |
set -e
# ⚠️ QNAP SSH ไม่มี PATH เต็ม ต้อง export เอง
# docker: /share/CACHEDEV1_DATA/.qpkg/container-station/bin/docker
# git: /opt/bin/git
export PATH="/share/CACHEDEV1_DATA/.qpkg/container-station/bin:/opt/bin:/usr/local/bin:/usr/bin:/bin:$PATH"
echo "🚀 Starting Deployment..."
# 1. Update Code
echo "📂 Pulling latest code..."
cd /share/np-dms/app/source/lcbp3
git fetch origin main
git reset --hard origin/main
# 2. Build Backend
echo "🏗️ Building Backend..."
docker build -f backend/Dockerfile -t lcbp3-backend:latest .
# 3. Build Frontend
echo "🏗️ Building Frontend..."
docker build -f frontend/Dockerfile \
--build-arg NEXT_PUBLIC_API_URL=https://backend.np-dms.work/api \
-t lcbp3-frontend:latest .
# 4. Update Containers
echo "🔄 Updating Containers..."
# Sync compose file จาก repo → app directory
cp /share/np-dms/app/source/lcbp3/specs/04-Infrastructure-OPS/04-00-docker-compose/docker-compose-app.yml /share/np-dms/app/docker-compose-app.yml
cd /share/np-dms/app
# ⚠️ ลบ container เดิมที่อาจสร้างจาก Container Station - พยายามหลายวิธี
echo "🧹 Cleaning up existing containers..."
docker stop backend frontend 2>/dev/null || true
sleep 5
docker rm -f backend frontend 2>/dev/null || true
sleep 3
# ถ้ายังลบไม่ได้ ลอง force remove ด้วย container ID
for container in backend frontend; do
if docker ps -a --format "{{.Names}}" | grep -q "^${container}$"; then
echo "🔧 Force removing container: $container"
container_id=$(docker ps -a --filter "name=$container" --format "{{.ID}}")
if [ ! -z "$container_id" ]; then
docker rm -f "$container_id" 2>/dev/null || true
sleep 2
fi
fi
done
# 4a. Start Backend ก่อน
echo "🟢 Starting Backend..."
docker compose -f docker-compose-app.yml up -d backend
# 4b. รอ Backend healthy (ทุก 30 วิ สูงสุด 180 วิ)
echo "⏳ Waiting for Backend health check..."
for i in $(seq 1 6); do
echo "🔍 Health check attempt $i/6..."
health=$(docker inspect --format='{{.State.Health.Status}}' backend 2>/dev/null || echo "starting")
echo "📊 Health status: $health"
if [ "$health" = "healthy" ]; then
echo "✅ Backend is healthy!"
break
fi
if [ "$i" = "6" ]; then
echo "⚠️ Backend health check timeout after 180s - checking logs"
echo "📋 Backend logs (last 20 lines):"
docker logs --tail 20 backend
echo "🔧 Starting frontend anyway (backend may still be starting)"
fi
sleep 30
done
# 4c. Start Frontend
echo "🟢 Starting Frontend..."
docker compose -f docker-compose-app.yml up -d frontend
# 5. Cleanup
echo "🧹 Cleaning up unused images and containers..."
docker image prune -f
docker system prune -f --volumes 2>/dev/null || true
echo "📊 Final container status:"
docker ps -a
echo "✅ Deployment Complete!"