fix(chore): output build log to tmp directory

Release 的 github action 构建日志输出到 tmp 目录
This commit is contained in:
chilingling 2025-01-16 17:32:33 -08:00
parent bacd2999f6
commit 61aa180438
No known key found for this signature in database
GPG Key ID: 0D50D17C15E60987
1 changed files with 2 additions and 2 deletions

View File

@ -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