Compare commits

..

1 Commits

Author SHA1 Message Date
Pullfrog Action 85731f8360 fix action cwd 2025-10-23 16:18:55 -04:00
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) }}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@pullfrog/action",
"version": "0.0.57",
"version": "0.0.58",
"type": "module",
"files": [
"index.js",