Skip to content

Commit

Permalink
refactor: added an ls log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-ra committed Jul 24, 2023
1 parent ea64998 commit 4819e6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ async function run(): Promise<void> {
trimWhitespace: true
})

execSync('ls', {stdio: 'inherit', cwd: repositoryDirectory})
console.log(
execSync('ls', {stdio: 'inherit', cwd: repositoryDirectory}).toString()
)

const valuesPath = core.getInput('valuesPath', {required: true})
const context = core.getInput('context', {required: true})
Expand Down

0 comments on commit 4819e6b

Please sign in to comment.