From 5fa65bf3badf759c9b52325420024cb2ffb012e1 Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Mon, 27 Jan 2020 16:54:41 -0600 Subject: [PATCH] Removed core.info Despite the [existance of core.info](https://github.com/actions/toolkit/blob/master/packages/core/src/core.ts#L133), the action was throwing an error about this method. Reverted to `console.log` --- lib/main.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/main.js b/lib/main.js index 6848a7b..5036452 100644 --- a/lib/main.js +++ b/lib/main.js @@ -2,6 +2,7 @@ const github = require('@actions/github') const core = require('@actions/core') const fs = require('fs') const path = require('path') +const os = require('os') async function run() { try { @@ -91,7 +92,7 @@ async function run() { // Check for existance of tag and abort (short circuit) if it already exists. for (let tag of tags.data) { if (tag.name === getTagName(pkg.version)) { - core.info(`"${tag.name.trim()}" tag already exists.`) + console.log(`"${tag.name.trim()}" tag already exists.` + os.EOL) core.setOutput('tagname', '') return } @@ -124,7 +125,7 @@ async function run() { ) .join('\n') } catch (e) { - core.info('Failed to generate changelog from commits: ' + e.message) + console.log('Failed to generate changelog from commits: ' + e.message + os.EOL) tagMsg = tagName } } @@ -141,7 +142,7 @@ async function run() { type: 'commit', }) - core.info(`Created new tag: ${newTag.data.tag}`) + console.log(`Created new tag: ${newTag.data.tag}` + os.EOL) } catch (e) { core.setFailed(e.message) return @@ -155,7 +156,7 @@ async function run() { sha: newTag.data.sha, }) - core.info(`Reference ${newReference.data.ref} available at ${newReference.data.url}`) + console.log(`Reference ${newReference.data.ref} available at ${newReference.data.url}` + os.EOL) } catch (e) { core.warning({ ...repo,