diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index cf3601f..b177abf 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -22,9 +22,9 @@ jobs: - name: Build client (Vite.js) run: | - npm i --prefix client - npm run build --prefix client - cp -r client/dist/* server/public/ + cd client + npm i + npm run build --emptyOutDir --outDir '../server/public' - name: Build server (Bun) run: |