From: Cameron Otsuka Date: Tue, 17 Mar 2026 04:05:13 +0000 (-0700) Subject: revert, need to build search index before artifact is uploaded X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=64c66f36e0df5cf4018d2a1ac14899bfefe6c849;p=cotsuka.github.io revert, need to build search index before artifact is uploaded --- 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