Skip to content

Commit db0664c

Browse files
committed
fix: support beta releases
1 parent 2ec2088 commit db0664c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,8 @@ workflows:
4545
requires:
4646
- unit
4747
- integration
48+
filters:
49+
branches:
50+
only:
51+
- main
52+
- beta

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@
107107
},
108108
"release": {
109109
"branches": [
110-
"main"
110+
"main",
111+
{
112+
"name": "beta",
113+
"channel": "beta",
114+
"prerelease": true
115+
}
111116
],
112117
"plugins": [
113118
[
@@ -127,4 +132,4 @@
127132
"@semantic-release/github"
128133
]
129134
}
130-
}
135+
}

0 commit comments

Comments
 (0)