瀏覽代碼

debug travis deploy

Daniel Zlotin 7 年之前
父節點
當前提交
991c23983c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js 查看文件

@@ -60,7 +60,7 @@ 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
-  execSyncSilently(`git push deploy --tags`);
63
+  execSync(`git push deploy --tags --verbose`);
64 64
   execSync(`npm publish --tag latest`);
65 65
 }
66 66