Fix paths
Some checks failed
On Push Deploy / deploy (push) Failing after 24s

This commit is contained in:
Johnny322
2026-02-10 15:53:39 +01:00
parent 0e243d8faa
commit 549a7de31f

View File

@@ -8,7 +8,8 @@ jobs:
runs-on: pusher runs-on: pusher
container: container:
volumes: volumes:
- /root/repos:/root/repos - /repos:/repos
- /www/jeopardy:/content
steps: steps:
- name: Install Node.js & npm - name: Install Node.js & npm
run: | run: |
@@ -20,11 +21,12 @@ jobs:
ip addr show eth0 ip addr show eth0
- name: Install dependencies - name: Install dependencies
run: | run: |
cd /root/repos/music-jeopardy cd /repos/music-jeopardy
git pull git pull
npm ci npm ci
- name: Build production bundle - name: Build production bundle
run: | run: |
cd /root/repos/music-jeopardy cd /repos/music-jeopardy
npm run generate:data npm run generate:data
npm run build npm run build
cp -r /repos/music-jeopardy/dist/* /content