Skip to content

Commit

Permalink
Print out stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Jul 1, 2024
1 parent 9bc23a8 commit 2b6241c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ async function run() {
: process.env.INSTA_INFRA_FOLDER
const baseFolder =
core.getInput('base_folder', {}).length > 0
? core.getInput('base_folder', {}).replace('/./', '/')
: process.env.BASE_FOLDER
? core.getInput('base_folder', {}).replace('/./', '')
: process.env.BASE_FOLDER.replace('/./', '')

// Debug logs are only output if the `ACTIONS_STEP_DEBUG` secret is true
core.info(`Using config file: ${applicationConfig}`)
Expand Down

0 comments on commit 2b6241c

Please sign in to comment.