diff --git a/.scripts/git_tag.js b/.scripts/git_tag.js index d2e58dfd11..f12d104814 100644 --- a/.scripts/git_tag.js +++ b/.scripts/git_tag.js @@ -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`); }