We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 866ae40 commit fc6b309Copy full SHA for fc6b309
.github/workflows/release.yml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- master
6
+ - next
7
jobs:
8
release:
9
name: Release
release.config.cjs
@@ -1,11 +1,5 @@
1
-const npm = [
2
- '@semantic-release/npm',
- {
- pkgRoot: 'package'
- }
-];
module.exports = {
- branches: ['master'],
+ branches: ['master', 'next'],
verifyConditions: [
10
'@semantic-release/changelog',
11
'@semantic-release/npm',
@@ -20,5 +14,13 @@ module.exports = {
20
14
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
21
15
}
22
16
],
23
- publish: [npm, '@semantic-release/github']
17
+ publish: [
18
+ [
19
+ '@semantic-release/npm',
+ {
+ pkgRoot: 'package'
+ }
+ ],
24
+ '@semantic-release/github'
25
+ ]
26
};
0 commit comments