Skip to content

Commit

Permalink
Make sure variables are taken from environment before being used. (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein authored Dec 14, 2024
1 parent 78e1f3f commit 6e279c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/_shared-docs-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ jobs:
core.setOutput('col-path', colpath)
core.setOutput('checkout-path', checkoutPath)
const { RUNNER_TEMP, EVENT_ACTION, MERGE_COMMIT_SHA, GITHUB_EVENT_NUMBER } = process.env
var initPath = `${RUNNER_TEMP}/docsbuild`
var skipInit = false
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/_shared-docs-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ jobs:
core.setOutput('col-path', colpath)
core.setOutput('checkout-path', checkoutPath)
const { RUNNER_TEMP } = process.env
var initPath = `${RUNNER_TEMP}/docsbuild`
var skipInit = false
Expand Down

0 comments on commit 6e279c9

Please sign in to comment.