From 64c66f36e0df5cf4018d2a1ac14899bfefe6c849 Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Mon, 16 Mar 2026 21:05:13 -0700 Subject: [PATCH] revert, need to build search index before artifact is uploaded --- .github/workflows/deploy-to-ghpages.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-to-ghpages.yml b/.github/workflows/deploy-to-ghpages.yml index c433b2c..4bde7b1 100644 --- a/.github/workflows/deploy-to-ghpages.yml +++ b/.github/workflows/deploy-to-ghpages.yml @@ -17,9 +17,16 @@ jobs: contents: read steps: - uses: actions/checkout@v6 - - uses: withastro/action@v5 + - uses: oven-sh/setup-bun@v2 + - name: Install dependencies + run: bun install --frozen-lockfile + - name: Build site pages + run: bun run build - name: Build search index run: bun run index + - uses: actions/upload-pages-artifact@v4 + with: + path: dist/ deploy: needs: build -- 2.53.0