Files
vfxreview/.gitea/workflows/deploy.yml
T
twotalesanimation 033e89963a
Deploy / deploy (push) Failing after 1s
Fixed runner again
2026-05-20 13:13:32 +02:00

27 lines
386 B
YAML

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
container:
volumes:
- /opt:/opt
steps:
- name: Deploy
run: |
cd /opt/vfxreview
git pull
docker-compose up -d --build
docker-compose exec -T vfxreview npx prisma migrate deploy
docker image prune -f