File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ jobs:
43
43
run : yarn build
44
44
45
45
- name : Run Jest unit tests
46
- if : " !contains(github.event.head_commit.message, 'chore( release) ')"
46
+ if : " !contains(github.event.head_commit.message, 'chore: release')"
47
47
run : yarn jest:ci
48
48
49
49
- name : Upload Jest coverage to Codecov
50
- if : " !contains(github.event.head_commit.message, 'chore( release) ')"
50
+ if : " !contains(github.event.head_commit.message, 'chore: release')"
51
51
run : bash <(curl -s https://codecov.io/bash)
52
52
53
53
- name : Start server in the background
@@ -72,11 +72,11 @@ jobs:
72
72
yarn build:demo
73
73
74
74
# deploy (re-publish) GitHub demo page with a Prod build but only when merging to "master" branch
75
- # and the commit message contains the text "chore( release) "
75
+ # and the commit message contains the text "chore: release"
76
76
- name : Deploy to gh-pages
77
77
if : |
78
78
github.ref == 'refs/heads/master' &&
79
- contains(github.event.head_commit.message, 'chore( release) ')
79
+ contains(github.event.head_commit.message, 'chore: release')
80
80
uses : peaceiris/actions-gh-pages@v3
81
81
with :
82
82
github_token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments