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