mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
module.exports = function(grunt) {
|
|
"use strict";
|
|
|
|
// build, then zip and upload to s3
|
|
grunt.registerTask('release', [
|
|
'build',
|
|
'build-post-process',
|
|
'compress:tgz_release',
|
|
]);
|
|
|
|
};
|