This commit is contained in:
2025-12-25 17:05:11 +07:00
parent 8c56f4292d
commit 015f1415a1
3 changed files with 98 additions and 43 deletions

View File

@@ -2,54 +2,33 @@ name: Deploy to Private Server
on:
push:
branches: [ "main" ]
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:20-slim
steps:
- uses: actions/checkout@v4
- name: Build Vite app
run: |
npm ci
npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-output
path: dist/
deploy:
runs-on: homesrv
needs: build
steps:
- name: Load NVM and Node
run: |
bash -lc '
export NVM_DIR="/root/.nvm"
source "$NVM_DIR/nvm.sh"
node -v
npm -v
'
steps:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: build-output
path: dist/
- name: Deploy to host
- name: Build Docker image
run: |
rm -rf /www/vite-app/timelapse-calc
mkdir -p /www/vite-app/timelapse-calc
cp -r dist/* /www/vite-app/timelapse-calc/
echo "Deployment completed successfully"
echo "Deployed files:"
ls -la /www/vite-app/timelapse-calc/
docker build -t timelapse-calc:latest \
-f Dockerfile .
- name: Stop old container if exists
run: |
if docker ps -a --format '{{.Names}}' | grep -q '^timelapse-calc$'; then
docker stop timelapse-calc
docker rm timelapse-calc
fi
- name: Run new container
run: |
docker run -d \
--restart always \
--name timelapse-calc \
-p 3005:80 \
timelapse-calc:latest
docker ps --format "{{.Names}} {{.Image}} {{.Status}}"