Skip to content

Commit

Permalink
chore: another try
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Jan 3, 2025
1 parent cdd8dc3 commit dfdc409
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/scripts/package-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ const RELEASE = process.env.RELEASE === 'true';
const PRE_RELEASE = process.env.PRE_RELEASE === 'true';
const GITHUB_SHA = process.env.GITHUB_SHA;

function getSemverVersion(tag) {
return findVersions(tag);
}

const SEMVER_VERSION = getSemverVersion(TAG);
const SEMVER_VERSION = findVersions(TAG).toString();

if (RELEASE) {
if (SEMVER_VERSION.includes('-')) {
Expand Down

0 comments on commit dfdc409

Please sign in to comment.