Skip to content

Commit

Permalink
inspect env
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Mar 7, 2024
1 parent 6734d7b commit d63e878
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/setup-julia.js

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

3 changes: 2 additions & 1 deletion src/setup-julia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ async function run() {

// Inputs
const versionInput = core.getInput('version')
core.debug(`raw version: ${versionInput} type: ${typeof versionInput}`)
core.debug(`getInput version: ${versionInput} type: ${typeof versionInput}`)
core.debug(`env version: ${process.env[`INPUT_VERSION`]} type: ${typeof process.env[`INPUT_VERSION`]}`)
const includePrereleases = core.getInput('include-all-prereleases') == 'true'
const originalArchInput = core.getInput('arch')

Expand Down

0 comments on commit d63e878

Please sign in to comment.