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`
This commit is contained in:
Corey Butler 2020-01-27 16:54:41 -06:00 committed by GitHub
parent b2abc3fde0
commit 5fa65bf3ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,