fix: Test release
parent
234446dc90
commit
a85634b8c7
|
@ -46,11 +46,11 @@ async function run() {
|
||||||
|
|
||||||
changelogStream
|
changelogStream
|
||||||
.pipe(fs.createWriteStream('CHANGELOG.md'))
|
.pipe(fs.createWriteStream('CHANGELOG.md'))
|
||||||
.on('finish', () => {
|
.on('finish',async () => {
|
||||||
// Add changed files to git
|
// Add changed files to git
|
||||||
git.add('.')
|
await git.add('.')
|
||||||
git.commit(commitMessage.replace('{version}', jsonPackage.version))
|
await git.commit(commitMessage.replace('{version}', jsonPackage.version))
|
||||||
git.push()
|
await git.push()
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue