Daniel Zlotin преди 7 години
родител
ревизия
d240378a83
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js Целия файл

@@ -60,8 +60,8 @@ function copyNpmRc() {
60 60
 function tagAndPublish(newVersion) {
61 61
   console.log(`new version is: ${newVersion}`);
62 62
   execSync(`npm version ${newVersion} -m "v${newVersion} [ci skip]"`);
63
-  execSync(`git push deploy --tags --verbose`);
64 63
   execSync(`npm publish --tag latest`);
64
+  execSyncSilently(`git push deploy --tags`);
65 65
 }
66 66
 
67 67
 function run() {