From 91ced578c58a2c080fd1f39b9fef7a79814593a1 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 10 Mar 2021 21:11:23 +0000 Subject: [PATCH] Updated tagName in release script no issue - as of 4.0, we're shipping tags with the preceding `v`, but this script ignored that and so the release was incorrect - this commit updates the tagName to have the preceding `v` --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e09df6f..f134db1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -155,7 +155,7 @@ exports.release = async () => { const newReleaseResponse = await releaseUtils.releases.create({ draft: true, preRelease: false, - tagName: newVersion, + tagName: 'v' + newVersion, releaseName: newVersion, userAgent: 'Casper', uri: `https://api.github.com/repos/${REPO}/releases`,