From 0fc709709b5e2b8f7ccd158cde0d3ca56274f43c Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Fri, 24 Oct 2025 17:47:09 +0800 Subject: [PATCH] Update vite.yml --- .github/workflows/vite.yml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/vite.yml b/.github/workflows/vite.yml index de1e1c9..dd7d636 100644 --- a/.github/workflows/vite.yml +++ b/.github/workflows/vite.yml @@ -13,18 +13,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'yarn' - + - uses: actions/checkout@v5 + - uses: oven-sh/setup-bun@v2 - name: Install and build run: | - yarn install - # pass --base if CNAME is not used - # npm run build -- --base=/${{ github.event.repository.name }}/ - yarn build + bun install + bun build # Enable Vue Router history mode with 404.html hack for Github Pages cd dist @@ -34,9 +28,3 @@ jobs: with: branch: gh-pages folder: dist - - - name: Publish deployed code - uses: actions/upload-artifact@v4 - with: - name: published - path: dist