Skip to content

Commit e6e2a01

Browse files
committed
ci: enable alpha and beta releases
1 parent c41f250 commit e6e2a01

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI/CD
33
on:
44
pull_request: # Runs whenever a pull request is created or updated (including from another fork)
55
push: # Runs whenever a commit is pushed to the repository...
6-
branches: [master, develop, hotfix/*] # ...on any of these branches
6+
branches: [master, develop, alpha, beta, hotfix/*] # ...on any of these branches
77
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
88
concurrency:
99
group: "${{ github.workflow }} @ ${{ github.head_ref || github.ref }}"

release.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ module.exports = {
1010
channel: 'hotfix',
1111
prerelease: 'hotfix'
1212
},
13+
{
14+
name: 'alpha',
15+
prerelease: true
16+
},
1317
{
1418
name: 'beta',
15-
channel: 'beta',
1619
prerelease: true
1720
}
1821
]

0 commit comments

Comments
 (0)