We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f12474 + abb225a commit e2472e5Copy full SHA for e2472e5
scripts/release.js
@@ -103,7 +103,8 @@ function tagAndPublish(newVersion) {
103
exec.execSyncRead(`npm publish --tag ${VERSION_TAG}`);
104
if (isReleaseBuild && !IS_SNAPSHOT) {
105
exec.execSync(`git tag -a ${newVersion} -m "${newVersion}"`);
106
- exec.execSyncSilent(`git push deploy ${newVersion} || true`);
+ console.log(`tagging git for version ${newVersion}...`);
107
+ exec.execSyncSilent(`git push origin ${newVersion}`);
108
}
109
110
0 commit comments