From da5d517cc0851bcf850ecd6006b11cebcf41fcbc Mon Sep 17 00:00:00 2001 From: yan Date: Tue, 30 Apr 2024 14:35:52 -0700 Subject: [PATCH] fix missing quote --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index bfa20a7..67b4ceb 100644 --- a/action.yml +++ b/action.yml @@ -87,7 +87,7 @@ runs: DEBUG: ${{ (inputs.debug == 'true' || runner.debug) && 'true' || 'false'}} with: script: | - const actionPath = ${{ github.action_path }} + const actionPath = '${{ github.action_path }}' const script = require(`${actionPath}/src/action.js`) const inputs = ${{ toJson(inputs) }} await script({github, context, inputs, actionPath})