Skip to content

Commit c3b8184

Browse files
try to use path to join path
1 parent 26198d0 commit c3b8184

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656
with:
5757
script: |
5858
const path = require('path');
59-
const utilsPath = path.join('${{github.action_path}}'', 'lib/utils.js')
59+
const utilsPath = path.join('${{github.action_path}}', 'lib/utils.js')
6060
const {setupAuth} = require(utilsPath)
6161
setupAuth(core)
6262
env:
@@ -68,7 +68,7 @@ runs:
6868
with:
6969
script: |
7070
const path = require('path');
71-
const utilsPath = path.join('${{github.action_path}}'', 'lib/utils.js')
71+
const utilsPath = path.join('${{github.action_path}}', 'lib/utils.js')
7272
const {getStackqlCommand} = require(utilsPath)
7373
getStackqlCommand(core)
7474
env:

0 commit comments

Comments
 (0)