From 0160bdd0b220ee12e25b5121d38a6cdce8d42c57 Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Wed, 12 Oct 2022 11:46:30 -0500 Subject: [PATCH] Update main.js --- app/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.js b/app/main.js index c541b5e..e3ee47d 100644 --- a/app/main.js +++ b/app/main.js @@ -20,7 +20,7 @@ async function run () { const strategy = (core.getInput('regex_pattern', { required: false }) || '').trim().length > 0 ? 'regex' : ((core.getInput('strategy', { required: false }) || 'package').trim().toLowerCase()) // If this value is true, the tag will not be pushed - const isDryRun = core.getInput('dry_run', { required: false }); + const isDryRun = core.getInput('dryRun', { required: false }); // Extract the version number using the supplied strategy let version = core.getInput('root', { required: false }) @@ -81,7 +81,7 @@ async function run () { ) if (isDryRun === "true") { - core.warning(`"${tag.name}" tag is not pushed because the dry_run option was set.`) + core.warning(`"${tag.name}" tag is not pushed because the dryRun option was set.`) } else { core.warning(`Attempting to create ${tag.name} tag.`) }