Skip to content
Snippets Groups Projects
Commit 505b8ba8 authored by Sandro Weber's avatar Sandro Weber
Browse files

git tags need to be pushed

Change-Id: I763df339e36348369d1ead5de710339d39ad2800
parent 7f9adc26
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,8 @@ module.exports = function(grunt) {
options: {
verbose: true, // for debug purpose
remote: 'origin',
branch: 'HEAD:<%= gerritBranch %>'
branch: 'HEAD:<%= gerritBranch %>',
tags: true
}
}
},
......@@ -147,10 +148,10 @@ module.exports = function(grunt) {
grunt.log.writeln('[grunt ci:' + target + '] GERRIT_BRANCH is: ' + branch);
if (target === 'patch' || target === 'minor' || target === 'major') {
tasks.unshift('bump:' + target);
tasks.push('gittag:dist');
tasks.push('gitadd:bump');
tasks.push('gitcommit:bump');
tasks.push('gitpush:bump');
tasks.push('gittag:dist');
}
grunt.task.run(tasks);
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment