fix(post): Create a tag before makeing a release

This commit is contained in:
Kaito Udagawa
2017-08-13 20:29:49 -07:00
committed by Gregor Martynus
parent f148a61339
commit 3f8559731f
3 changed files with 27 additions and 19 deletions
+5 -3
View File
@@ -3,11 +3,13 @@ module.exports = function () {
authenticate: function () {
return true
},
gitdata: {
createReference: function (release, cb) {
cb(null)
}
},
repos: {
createRelease: function (release, cb) {
cb(null, {id: 1})
},
editRelease: function (release, cb) {
cb(null)
}
}