Procházet zdrojové kódy

debug travis deploy

Daniel Zlotin před 7 roky
rodič
revize
991c23983c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js Zobrazit soubor

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