diff --git a/dist/index.js b/dist/index.js index 73ca4552..4f579c14 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 65d04a70..3a0f3bc7 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/versioning.ts b/src/model/versioning.ts index 9c68a4a3..3f301db5 100644 --- a/src/model/versioning.ts +++ b/src/model/versioning.ts @@ -265,7 +265,7 @@ export default class Versioning { * Get the tag if there is one pointing at HEAD */ static async getTag() { - return this.git(['tag', '--points-at', 'HEAD']); + return (await this.git(['tag', '--points-at', 'HEAD'])).trim(); } /**