forked from opentiny/tiny-engine
fix(chore): output build log to tmp directory
Release 的 github action 构建日志输出到 tmp 目录
This commit is contained in:
parent
bacd2999f6
commit
61aa180438
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue