We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdd8dc3 commit dfdc409Copy full SHA for dfdc409
.github/scripts/package-version.js
@@ -5,11 +5,7 @@ const RELEASE = process.env.RELEASE === 'true';
5
const PRE_RELEASE = process.env.PRE_RELEASE === 'true';
6
const GITHUB_SHA = process.env.GITHUB_SHA;
7
8
-function getSemverVersion(tag) {
9
- return findVersions(tag);
10
-}
11
-
12
-const SEMVER_VERSION = getSemverVersion(TAG);
+const SEMVER_VERSION = findVersions(TAG).toString();
13
14
if (RELEASE) {
15
if (SEMVER_VERSION.includes('-')) {
0 commit comments