From eefdcce9d0bfd4f71414e11fc43fca5310792289 Mon Sep 17 00:00:00 2001 From: xuthus Date: Tue, 16 Apr 2024 03:08:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e7e1f019..c5ce8b21 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -15,11 +15,14 @@ jobs: - name: Set up node uses: actions/setup-node@v4 with: - node-version: '20' - - name: Build with Npm + node-version: '18' + - name: Install dependencies + run: npm install + - name: Build with Npm build run: | - npm install npm run build + - name: Build with Npm create-release + run: | npm run create-release - name: Set up Docker Buildx id: buildx