Skip to content

Commit

Permalink
actions/main/action.yml: fix relative path require
Browse files Browse the repository at this point in the history
  • Loading branch information
thypon committed Jun 6, 2024
1 parent a932b95 commit d3afe84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/main/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ runs:
const actionPath = '${{ github.action_path }}/../../'
const inputs = ${{ toJson(inputs) }}
const script = require(`${actionPath}/action.cjs`)
const script = require('${{ github.action_path }}/action.cjs')
await script({github, context, inputs, actionPath, core,
debug: process.env.DEBUG === 'true'})

0 comments on commit d3afe84

Please sign in to comment.