Skip to content

Commit

Permalink
stringifying instead of parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
darpanLalwani committed Sep 19, 2024
1 parent 8af0a73 commit 3b0c4d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup-env/src/actionInput/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class ActionInput {
},
});

core.info(`bsApiResponse - ${JSON.parse(bsApiResponse)}`);
core.info(`bsApiResponse - ${JSON.stringify(bsApiResponse.data)}`);
const variables = bsApiResponse.data?.variables;
core.info(`variables - ${variables}`);
if (variables && typeof variables === 'object') {
Expand Down

0 comments on commit 3b0c4d2

Please sign in to comment.