We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3135505 commit f240725Copy full SHA for f240725
action.yml
@@ -56,7 +56,6 @@ runs:
56
with:
57
script: |
58
const path = require('path');
59
- console.log('github action path is ==================', process.env.GITHUB_ACTION_PATH)
60
const utilsPath = path.join(process.env.GITHUB_ACTION_PATH, 'lib', 'utils.js')
61
const {setupAuth} = require(utilsPath)
62
setupAuth(core)
@@ -69,7 +68,7 @@ runs:
69
68
70
71
72
- const utilsPath = path.join('${{github.action_path}}', 'lib', 'utils.js')
+ const utilsPath = path.join(process.env.GITHUB_ACTION_PATH, 'lib', 'utils.js')
73
const {getStackqlCommand} = require(utilsPath)
74
getStackqlCommand(core)
75
env:
0 commit comments