This commit is contained in:
baozhoutao 2021-09-30 18:11:59 +08:00
parent b511b15e1f
commit 09ba8f7941

View File

@ -8,6 +8,6 @@ const loadJSONFile = (filePath)=>{
const lernaInfo = loadJSONFile('lerna.json');
if(lernaInfo && lernaInfo.version){
execSync(`git tag -a V${lernaInfo.version} -m 'published V${lernaInfo.version}' && git push origin --tags`);
execSync(`git tag -a v${lernaInfo.version} -m 'published v${lernaInfo.version}' && git push origin --tags`);
}