packaging: publish nightly builds

This commit is contained in:
Torkel Ödegaard
2017-03-23 11:09:35 +01:00
parent 68e6700663
commit 7864828e75
4 changed files with 156 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
var path = require('path');
module.exports = function(grunt) {
"use strict";
@@ -67,6 +69,8 @@ module.exports = function(grunt) {
grunt.task.run('copy:public_gen_to_temp');
grunt.task.run('copy:backend_bin');
grunt.task.run('copy:backend_files');
grunt.file.write(path.join(grunt.config('tempDir'), 'VERSION'), grunt.config('pkg.version'));
});
};