Skip to content

Commit

Permalink
adds author also in the logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ohmyguigs authored and bruceadams committed Aug 23, 2021
1 parent 2c81e21 commit b7e88de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get-release.js
Expand Up @@ -29,7 +29,7 @@ async function run() {
data: { id: releaseId, html_url: htmlUrl, upload_url: uploadUrl, name: name, body: body, draft: draft, prerelease: prerelease, author: author }
} = getReleaseResponse;

console.log(`Got release info: '${releaseId}', '${htmlUrl}', '${uploadUrl}', '${name}', '${draft}', '${prerelease}', '${body}'`);
console.log(`Got release info: '${releaseId}', '${htmlUrl}', '${uploadUrl}', '${name}', '${draft}', '${prerelease}', '${body}', '${author}'`);

// Set the output variables for use by other actions: https://github.com/actions/toolkit/tree/master/packages/core#inputsoutputs
core.setOutput("id", releaseId.toString());
Expand Down

0 comments on commit b7e88de

Please sign in to comment.