Skip to content

Commit 369c0e5

Browse files
chore(CI): add rc channel
1 parent fe4249c commit 369c0e5

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ on:
33
push:
44
branches:
55
- 'master'
6+
- 'beta'
7+
- 'alpha'
8+
- 'canary-*'
9+
- 'rc'
10+
pull_request: {}
611

712
# Cancel any previous run (see: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency)
813
concurrency:

release.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
branches: [
3+
'master',
4+
{ name: 'alpha', prerelease: true },
5+
{ name: 'beta', prerelease: true },
6+
{ name: 'rc', prerelease: true },
7+
{ name: 'canary-*', prerelease: true, channel: 'canary' },
8+
],
9+
}

0 commit comments

Comments
 (0)