Skip to content

Commit

Permalink
Add quotes to matched
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Dec 20, 2023
1 parent e5b3d12 commit 2589963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/parse-ref-semver/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ try {
);

if (!match) {
core.setOutput('matched', false);
core.setOutput('matched', 'false');
core.info(`"${ref}" is not a valid semver reference.`);
return;
}
Expand All @@ -40,7 +40,7 @@ try {
build,
] = match;

core.setOutput('matched', true);
core.setOutput('matched', 'true');
core.setOutput('scope', scope);
core.setOutput('name', name);
core.setOutput('major', major);
Expand Down

0 comments on commit 2589963

Please sign in to comment.