Skip to content

Commit e1390af

Browse files
committed
Fix .well-known not being published
1 parent 24c8c58 commit e1390af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ var build = exports.build = gulp.parallel(html, css, js, font, images, blog, mis
171171
var lint = exports.lint = gulp.series(csslint, jshint);
172172

173173
var deploy = exports.deploy = gulp.series(build, function(done) {
174-
ghpages.publish(path.join(__dirname, 'dist'), { logger: log, branch: 'master' }, done);
174+
ghpages.publish(path.join(__dirname, 'dist'), { logger: log, branch: 'master', dotfiles: true }, done);
175175
});
176176

177177
var watch = exports.watch = gulp.parallel(build, function watch() {

0 commit comments

Comments
 (0)