Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gulpfile.js - github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72f89fb3c3b53b517b73bbd69d3fd953d7edd94a (plain)
1
2
3
4
5
6
7
8
9
var gulp = require("gulp");
var ghPages = require('gulp-gh-pages');

gulp.task('deploy', function() {
  return gulp.src('./exampleSite/public/**/*')
    .pipe(ghPages({
      "remoteUrl": "git@github.com:curttimson/hugo-theme-massively.git"
    }));
});