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

[nostory] fix CI

Change-Id: If3f62126418a4112b1d42b5a77e0f5fcccfbc46c
parent 00a5b298
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,8 @@ module.exports = function(grunt) { ...@@ -96,7 +96,8 @@ module.exports = function(grunt) {
dist: { dist: {
options: { options: {
message: 'add artefact', message: 'add artefact',
force: true force: true,
verbose: true
}, },
files: { files: {
src: ['../build/gz3d.js'] src: ['../build/gz3d.js']
...@@ -108,9 +109,9 @@ module.exports = function(grunt) { ...@@ -108,9 +109,9 @@ module.exports = function(grunt) {
bump: { bump: {
options: { options: {
message: 'bump to <%= pkg.version %>', message: 'bump to <%= pkg.version %>',
ignoreEmpty: true,
remote: 'origin', remote: 'origin',
branch: 'HEAD:<%= gerritBranch %>', branch: 'HEAD:<%= gerritBranch %>',
ignoreEmpty: true
}, },
files: { files: {
src: ['package.json', '../../bower.json'] src: ['package.json', '../../bower.json']
...@@ -118,11 +119,9 @@ module.exports = function(grunt) { ...@@ -118,11 +119,9 @@ module.exports = function(grunt) {
}, },
dist: { dist: {
options: { options: {
message: 'built artefact', message: 'commit artefact',
remote: 'origin', ignoreEmpty: true,
branch: 'HEAD:<%= gerritBranch %>', verbose: true
verbose: true,
force: true
}, },
files: { files: {
src: ['../build/gz3d.js'] src: ['../build/gz3d.js']
...@@ -142,10 +141,10 @@ module.exports = function(grunt) { ...@@ -142,10 +141,10 @@ module.exports = function(grunt) {
gitpush: { gitpush: {
bump: { bump: {
options: { options: {
verbose: true, // for debug purpose
remote: 'origin', remote: 'origin',
branch: 'HEAD:<%= gerritBranch %>', branch: 'HEAD:<%= gerritBranch %>',
tags: true tags: true,
verbose: true // for debug purpose
} }
}, },
dist: { dist: {
......
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