mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 02:11:08 +07:00
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:
parent
b2abc3fde0
commit
5fa65bf3ba
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user