diff --git a/.github/actions/parse-ref-semver/index.js b/.github/actions/parse-ref-semver/index.js index a15f724..9f76172 100644 --- a/.github/actions/parse-ref-semver/index.js +++ b/.github/actions/parse-ref-semver/index.js @@ -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; } @@ -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);