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