From 8ef8eb342c27ac35b4d04c1c49c68779d602aee6 Mon Sep 17 00:00:00 2001 From: naiba Date: Wed, 20 Nov 2024 22:29:08 +0800 Subject: [PATCH] fix: build ignore error --- .github/workflows/release.yaml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4d33e19..b285840 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: - name: Build static export run: | - bun run build + bun run build-ignore-error - name: Compress dist folder run: zip -r dist.zip dist diff --git a/package.json b/package.json index cd75587..5c0928e 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "scripts": { "dev": "vite", "build": "tsc -b && vite build", + "build-ignore-error": "vite build", "lint": "eslint .", "preview": "vite preview" },