Skip to content
This repository has been archived by the owner on Aug 12, 2021. It is now read-only.

Commit

Permalink
#1204 repo link
Browse files Browse the repository at this point in the history
  • Loading branch information
Gornicki, Lukasz committed Nov 27, 2017
1 parent 1ad342b commit 7e72207
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions ops/gulp/ghpages-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,9 @@ const prepareDeploy = (cb) => {
//Task for deploying compiled HTML to gh-pages branch for GitHub Pages hosting
const ghDeploy = (cb) => {

ghPages.publish(paths.destPrepare, (err) => {
if (err) {
console.log('ghDeploy failes', err)
//needed to break travis build in case of errors
process.exit(1);
}
cb();
});
ghPages.publish(paths.destPrepare, {
repo: '[email protected]:SAP/techne.git'
}, cb);
//return gulp.src(paths.srcDeploy)
// .pipe(ghPages());
}
Expand Down

0 comments on commit 7e72207

Please sign in to comment.