Skip to content

Commit ec809e0

Browse files
committed
Even more logs for CI Builds.
1 parent 56b073f commit ec809e0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build/tasks/publish.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,10 @@ module.exports = function (grunt) {
157157
}).then(function (parent) {
158158
return repository.createCommit('HEAD', author, author, '[ci skip] Build Version ' + version, oid, [parent]);
159159
}).then(function (id) {
160+
grunt.log.writeln('Created commit ' + id + 'for ' + version);
160161
return Git.Tag.create(repository, version, id, author, 'Release v'+version, 0); // 0 = don't force tag creation
161162
}).then(function () {
163+
grunt.log.writeln('Created tag ' + version);
162164
return repository.getRemote('origin');
163165
})
164166
.then(function (remote) {
@@ -204,6 +206,7 @@ module.exports = function (grunt) {
204206
done();
205207
}).catch(function (e) {
206208
grunt.log.error(e);
209+
grunt.log.error(e.stack());
207210
done(false);
208211
});
209212
});

0 commit comments

Comments
 (0)