fix action cwd

This commit is contained in:
Pullfrog Action
2025-10-23 16:18:55 -04:00
parent 1922352d86
commit 85731f8360
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -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) }}