Skip to content

Commit 9267913

Browse files
committed
ci: fix github actions
1 parent c4d00a2 commit 9267913

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v\d+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v\d+(\.\d+)*'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v\d+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v\d+(\.\d+)*'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
- develop
8-
- 'v\d+(\.\d+)*'
8+
- 'v[0-9]+.?*'
99

1010
env:
1111
CARGO_TERM_COLOR: always

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v\d+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v\d+(\.\d+)*'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)