From 145350575b14f967dca8e084683398ef6300f176 Mon Sep 17 00:00:00 2001 From: Meki Date: Tue, 18 Aug 2020 13:22:59 +0200 Subject: [PATCH] Fixing tag matcher --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4bd362c..35e4fce 100644 --- a/index.js +++ b/index.js @@ -33,7 +33,7 @@ sha = sha[0].slice(0, -6); } - var tag = stdout.match(/tag\:\s[a-zA-Z0-9\-\.]+\,/g); + var tag = stdout.match(/tag\:\s[a-zA-Z0-9\-\.]+/g); if (tag && tag.length > 0) { tag = tag[0].slice(5, -1);