diff --git a/app/lib/tag.js b/app/lib/tag.js index 66597b5..32528bc 100644 --- a/app/lib/tag.js +++ b/app/lib/tag.js @@ -6,7 +6,7 @@ import gh from '@actions/github' const github = new gh.GitHub(process.env.GITHUB_TOKEN || process.env.INPUT_GITHUB_TOKEN) // Get owner and repo from context of payload that triggered the action const { owner, repo } = gh.context -console.log(owner, repo) + export default class Tag { constructor (prefix, version, postfix) { this.prefix = prefix diff --git a/app/main.js b/app/main.js index 3bee644..a93e5c0 100644 --- a/app/main.js +++ b/app/main.js @@ -16,6 +16,7 @@ async function run () { // Identify the tag parsing strategy const root = core.getInput('root', { required: false }) || core.getInput('package_root', { required: false }) || './' const strategy = (core.getInput('regex_pattern', { required: false }) || '').trim().length > 0 ? 'regex' : ((core.getInput('strategy', { required: false }) || 'package').trim().toLowerCase()) + core.swarning(`Attempting to use ${strategy} strategy.`) // Extract the version number using the supplied strategy let version = core.getInput('root', { required: false })