From 549a7de31f41eec0e7e96b5ccb67a642c2447078 Mon Sep 17 00:00:00 2001 From: Johnny322 Date: Tue, 10 Feb 2026 15:53:39 +0100 Subject: [PATCH] Fix paths --- .gitea/workflows/on-push.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/on-push.yml b/.gitea/workflows/on-push.yml index 61f6adb..0b9b35f 100644 --- a/.gitea/workflows/on-push.yml +++ b/.gitea/workflows/on-push.yml @@ -8,7 +8,8 @@ jobs: runs-on: pusher container: volumes: - - /root/repos:/root/repos + - /repos:/repos + - /www/jeopardy:/content steps: - name: Install Node.js & npm run: | @@ -20,11 +21,12 @@ jobs: ip addr show eth0 - name: Install dependencies run: | - cd /root/repos/music-jeopardy + cd /repos/music-jeopardy git pull npm ci - name: Build production bundle run: | - cd /root/repos/music-jeopardy + cd /repos/music-jeopardy npm run generate:data npm run build + cp -r /repos/music-jeopardy/dist/* /content