Files
timelapse-calc/.gitea/workflows/deploy.yml
Tien Ngo 90356941b1
Some checks failed
Deploy to Private Server / build (push) Successful in 27s
Deploy to Private Server / deploy (push) Failing after 3s
deploy file to host machine
2025-12-24 15:17:17 +07:00

47 lines
994 B
YAML

name: Deploy to Private Server
on:
push:
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:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: build-output
path: dist/
- name: Deploy to host
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/