Skip to content

Commit b4e0ec1

Browse files
committed
Merge branch 'master' into develop
2 parents d607f39 + 54ef826 commit b4e0ec1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

release/prod.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ configPromise.then((config) => {
1111
};
1212
if (process.env.GH_TOKEN || process.env.GITHUB_TOKEN) {
1313
newConfig.plugins.push([
14-
"@semantic-release/git",
14+
'@semantic-release/git',
1515
{
1616
assets: [
1717
`${process.cwd()}/package.json`,
1818
`${process.cwd()}/yarn.lock`,
1919
`${process.cwd()}/CHANGELOG.md`,
2020
],
2121
message:
22-
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
22+
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
2323
},
2424
]);
2525

2626
if (isSDK) {
27-
plugins.push("@semantic-release/github");
27+
newConfig.plugins.push('@semantic-release/github');
2828
}
2929
}
3030
return semanticRelease(newConfig);

0 commit comments

Comments
 (0)