Skip to content

Commit 2a8bc71

Browse files
committed
fix workflow
1 parent d72ad8e commit 2a8bc71

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

.github/workflows/artifact.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Upload artifact
33
on: [push, pull_request]
44

55
jobs:
6-
doc:
6+
upload-zip:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2

.github/workflows/document.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Document
22

33
on:
44
push:
5+
branches:
6+
- master
7+
- production
8+
tags:
9+
- 'v*'
510

611
jobs:
712
doc:

.github/workflows/expander.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Expander test
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
pull_request:
48

59
jobs:
610
expander:

.github/workflows/unittest.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Unittest
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
pull_request:
48

59
jobs:
610
gtest:

.github/workflows/unittest_msvc.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Unittest(MSVC)
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
pull_request:
48

59
jobs:
610
gtest-msvc:

0 commit comments

Comments
 (0)