From 304735d95edf13e7f89c4ba7a73a3e0db2c33941 Mon Sep 17 00:00:00 2001 From: mrzta <108747930+mrzta@users.noreply.github.com> Date: Thu, 12 Feb 2026 19:59:33 +0000 Subject: [PATCH] Update deploy.yaml --- .gitea/workflows/deploy.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 2470924..57b8957 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -29,4 +29,14 @@ jobs: # Deploy cd /opt/docker/plex # Note: If the /dev/dri error persists, you must edit the plex.yml in your repo first - docker compose up -d --remove-orphans \ No newline at end of file + docker compose up -d --remove-orphans + + - name: Sync and Launch CV + run: | + mkdir -p /opt/docker/cv + # Sync everything in the cv folder (html, dockerfile, etc) + cp -r ./cv/. /opt/docker/cv/ + + cd /opt/docker/cv + # Rebuild is necessary here because it's a custom Dockerfile + docker compose up -d --build --remove-orphans \ No newline at end of file