Last active
October 9, 2015 00:23
-
-
Save adamsalves/1d210dd6e2e8643bd9e5 to your computer and use it in GitHub Desktop.
Gulpfile - Deploy Task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var ghPages = require('gulp-gh-pages'); | |
gulp.task('deploy', function() { | |
return gulp.src('./dist/**/*') | |
.pipe(ghPages()); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment