Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
fix: change versionInFile to point to version (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
blopezpi authored Feb 24, 2022
1 parent 0e0936a commit 57e5722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18083,7 +18083,7 @@ async function run(

let version = tag.replace(componentPrefix + 'v', '');
let versionInFile = version;
if (useTagInVersionsFile) {
if (useTagInVersionsFile != 'false') {
versionInFile = tag;
}

Expand Down
2 changes: 1 addition & 1 deletion src/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async function run(

let version = tag.replace(componentPrefix + 'v', '');
let versionInFile = version;
if (useTagInVersionsFile) {
if (useTagInVersionsFile != 'false') {
versionInFile = tag;
}

Expand Down

0 comments on commit 57e5722

Please sign in to comment.