Files
vfxreview/.gitea/workflows/deploy.yml
T
twotalesanimation be951c42f2
Deploy / deploy (push) Failing after 0s
Fixed runner
2026-05-20 13:12:21 +02:00

28 lines
438 B
YAML

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
container:
volumes:
- /opt:/opt
- /var/run/docker.sock:/var/run/docker.sock
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