Skip to content

Commit 388cd9d

Browse files
committed
chore: release v5.0.0
1 parent 7a6de8f commit 388cd9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ jobs:
4343
run: yarn build
4444

4545
- 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')"
4747
run: yarn jest:ci
4848

4949
- 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')"
5151
run: bash <(curl -s https://codecov.io/bash)
5252

5353
- name: Start server in the background
@@ -72,11 +72,11 @@ jobs:
7272
yarn build:demo
7373
7474
# 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"
7676
- name: Deploy to gh-pages
7777
if: |
7878
github.ref == 'refs/heads/master' &&
79-
contains(github.event.head_commit.message, 'chore(release)')
79+
contains(github.event.head_commit.message, 'chore: release')
8080
uses: peaceiris/actions-gh-pages@v3
8181
with:
8282
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)