summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 6c263b8..05b36fa 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -20,6 +20,7 @@ var ngrok = require('ngrok');
var staticTransform = require('connect-static-transform');
var pkg = require('./package.json');
var extend = require('util')._extend;
+var exec = require('child_process').exec;
var fs = require('fs');
var buildDirectory = 'dist';
var server;
@@ -35,11 +36,14 @@ gulp.task('release:push', function(callback) {
gulp.task('release:push:github', function(callback) {
return gulp.src([
- 'CHANGELOG.md',
+ 'CHANGELOG.md',
+ 'LICENSE',
buildDirectory + '/jquery.matchHeight-min.js',
buildDirectory + '/jquery.matchHeight.js'
])
.pipe(release({
+ owner: 'liabru',
+ repo: pkg.name,
tag: pkg.version,
name: 'jquery.matchHeight.js ' + pkg.version
}));