From 4002729ef7e4d326d324db9e7e7583c8b53b75f1 Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Sun, 2 Nov 2025 13:44:38 -0600 Subject: [PATCH] fix(ci): update deployment path and add Vike build step - Add web frontend build step to compile Vike site - Change artifact upload path from ./dist/ to ./web/dist/ - Install web dependencies before building frontend --- .github/workflows/build.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ddfa033..f66aab0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -173,11 +173,21 @@ jobs: fi done + - name: Install web dependencies + shell: bash + run: bun install + working-directory: web + + - name: Build web frontend + shell: bash + run: bun run build + working-directory: web + - name: Upload Artifact uses: actions/upload-pages-artifact@v4 if: github.ref == 'refs/heads/master' && github.event_name == 'push' with: - path: "./dist/" + path: "./web/dist/" retention-days: 7 - name: Deploy