Skip to content

Commit

Permalink
missed a content
Browse files Browse the repository at this point in the history
  • Loading branch information
mcascone committed Aug 16, 2024
1 parent 25467da commit 7e9b29b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/example-config-updater/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function run() {
}
// parse the file into an object
const content = JSON.parse(data);
const contentStr = JSON.stringify(config, null, 2);
const contentStr = JSON.stringify(content, null, 2);
console.log('config from file: ', contentStr);
// set the json string as an output
core.setOutput('content', contentStr);
Expand Down
2 changes: 1 addition & 1 deletion actions/example-config-updater/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export async function run() {

// parse the file into an object
const content = JSON.parse(data);
const contentStr = JSON.stringify(config, null, 2);
const contentStr = JSON.stringify(content, null, 2);
console.log('config from file: ', contentStr);

// set the json string as an output
Expand Down

0 comments on commit 7e9b29b

Please sign in to comment.