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:
authorCurtis Timson <curt@live.co.uk>2018-02-11 11:37:40 +0300
committerCurtis Timson <curt@live.co.uk>2018-02-11 11:37:40 +0300
commitcafd1b11a2b00ef5a257da0eb150a85d4d03e709 (patch)
tree15df5a5eb84da1613f2f9f394f621d5cf7c2a396
parent3cecc8c74431109587b67c091ecf545098700d46 (diff)
:rocket: Add gulp deploy task
-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