Skip to content

Instantly share code, notes, and snippets.

@adamsalves
Last active October 9, 2015 00:23
Show Gist options
  • Save adamsalves/1d210dd6e2e8643bd9e5 to your computer and use it in GitHub Desktop.
Save adamsalves/1d210dd6e2e8643bd9e5 to your computer and use it in GitHub Desktop.
Gulpfile - Deploy Task
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