@farris/cli 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
|