@farris/cli 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/ci/cli.js +3 -1
- package/package.json +1 -1
package/ci/cli.js
CHANGED
@@ -107,7 +107,9 @@ function updateProjectPrereleaseVersion(projectPath) {
|
|
107
107
|
// return childProcess.exec('git', ['push']);
|
108
108
|
const branch = childProcess.execSync("git", ["rev-parse", "--abbrev-ref", "HEAD"]);
|
109
109
|
console.log(`executing git push origin ${branch}`);
|
110
|
-
|
110
|
+
const url = `https://project_4166_bot:8sTE2mjQyAycz13EPJAA@git.iec.io/webadp/farris-ide.git/`
|
111
|
+
return childProcess.exec("git", ["push", url]);
|
112
|
+
// git push https://myusername:${PROJECT_ACCESS_TOKEN}@gitlab.mydomain.com/mygroup/myproject.git
|
111
113
|
})
|
112
114
|
}
|
113
115
|
|