diff --git a/action.yml b/action.yml index 56be1e2..b1db63e 100644 --- a/action.yml +++ b/action.yml @@ -32,9 +32,10 @@ runs: shell: bash working-directory: ${{ github.action_path }} - name: Run agent - run: node entry.ts + run: | + cd $GITHUB_WORKSPACE + node ${{ github.action_path }}/entry.ts shell: bash - working-directory: ${{ github.action_path }} env: INPUTS_JSON: ${{ toJSON(inputs) }} diff --git a/package.json b/package.json index 7acddc7..35fb9ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pullfrog/action", - "version": "0.0.57", + "version": "0.0.58", "type": "module", "files": [ "index.js",