From 85731f8360c357262ec16750439dadae56b21dcb Mon Sep 17 00:00:00 2001 From: Pullfrog Action Date: Thu, 23 Oct 2025 16:18:55 -0400 Subject: [PATCH] fix action cwd --- action.yml | 5 +++-- package.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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",