Skip to content

Commit 29da4a8

Browse files
committed
fix build script
1 parent a02d37c commit 29da4a8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: PreReleaseFlow
22

33
on:
44
pull_request:
5-
branches: develop
6-
types: closed
5+
branches: [develop]
6+
types: [closed]
77
workflow_dispatch:
88

99
jobs:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: ReleaseFlow
22

33
on:
44
pull_request:
5-
branches: master
6-
types: closed
5+
branches: [master]
6+
types: [closed]
77
workflow_dispatch:
88

99
jobs:
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
one_of: release
2020
repo_token: ${{ secrets.GITHUB_TOKEN }}
21-
21+
2222
- name: 'Checkout repo'
2323
uses: actions/checkout@v2
2424

0 commit comments

Comments
 (0)