Skip to content

Commit

Permalink
Correctly parse create_annotated_tag (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrphillips committed Oct 26, 2022
1 parent 3f9dffd commit a1afa11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/action.ts
Expand Up @@ -25,7 +25,9 @@ export default async function main() {
const releaseBranches = core.getInput('release_branches');
const preReleaseBranches = core.getInput('pre_release_branches');
const appendToPreReleaseTag = core.getInput('append_to_pre_release_tag');
const createAnnotatedTag = !!core.getInput('create_annotated_tag');
const createAnnotatedTag = /true/i.test(
core.getInput('create_annotated_tag')
);
const dryRun = core.getInput('dry_run');
const customReleaseRules = core.getInput('custom_release_rules');
const shouldFetchAllTags = core.getInput('fetch_all_tags');
Expand Down

0 comments on commit a1afa11

Please sign in to comment.