From 61aa18043802869e6c315b83e0cd33fc36ee4603 Mon Sep 17 00:00:00 2001 From: chilingling Date: Thu, 16 Jan 2025 17:32:33 -0800 Subject: [PATCH] fix(chore): output build log to tmp directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release 的 github action 构建日志输出到 tmp 目录 --- .github/workflows/Release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 2d61883a5..09b87cf75 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -32,13 +32,13 @@ jobs: run: pnpm install - name: Run Build - run: pnpm run build:plugin && pnpm run build:alpha > build-alpha.log 2>&1 + run: pnpm run build:plugin && pnpm run build:alpha > /tmp/build-alpha.log 2>&1 - name: Upload build logs uses: actions/upload-artifact@v4 with: name: build-alpha-log - path: build-alpha.log + path: /tmp/build-alpha.log - name: Parse Publish tag id: parse_tag