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

github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
new file mode 100644
index 0000000..49608d5
--- /dev/null
+++ b/gulpfile.js
@@ -0,0 +1,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-dopetrope.git"
+ }));
+}); \ No newline at end of file