Skip to content

Commit 6c127c9

Browse files
authored
Merge pull request #61 from roots/fix-release-not-found-logging
Fix release not found logging
2 parents 4432eba + 78e4f4e commit 6c127c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function getRelease(version) {
3232
const release = await fetchRelease(version);
3333

3434
if (!release.name) {
35-
core.info(`API response: ${release}`);
35+
core.info(`API response: ${JSON.stringify(release)}`);
3636
throw new Error(`No trellis-cli release found for version ${version}`);
3737
}
3838

0 commit comments

Comments
 (0)