Skip to content

Commit

Permalink
ci: 修复更换分支系统后无法开始CI的问题
Browse files Browse the repository at this point in the history
项目的原 GitHub Workflow 触发条件为检测 wu_main 分支上是否有 push,
更换分支系统(将分支名称 “_” 改为 “/” )后也要讲 Workflow 配置文件中对
应的分支名改为 wu/main。

Signed-off-by: crrashh1542 <[email protected]>
  • Loading branch information
crrashh1542 committed Jun 9, 2024
1 parent dfbd718 commit a53ace6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build
on:
push:
# 由于其它分支为本地测试打包,故只 CI 主线变更
branches: [wu_main]
branches: [wu/main]
paths-ignore:
- '**.md'
- '**.txt'
Expand Down

0 comments on commit a53ace6

Please sign in to comment.