Skip to content

Commit

Permalink
Fixed log output
Browse files Browse the repository at this point in the history
  • Loading branch information
thasso committed Apr 27, 2022
1 parent 61097d3 commit 7ef2d7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8590,7 +8590,7 @@ async function fetchIds(token, version) {
}

let results = [...new Set(versions)]
console.log(">> RESULTS ", JSON.stringify(results, null, 2))
core.info(JSON.stringify(results, null, 2))
return results
}

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async function fetchIds(token, version) {
}

let results = [...new Set(versions)]
console.log(">> RESULTS ", JSON.stringify(results, null, 2))
core.info(JSON.stringify(results, null, 2))
return results
}

Expand Down

0 comments on commit 7ef2d7b

Please sign in to comment.