From 4d69a9a6f4aa9eba86d747f43fa92facb9f025d2 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 17 May 2025 11:14:47 -0400 Subject: [PATCH] bugfix with script path --- action.yaml | 2 +- test.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 test.sh diff --git a/action.yaml b/action.yaml index f869b5b..aed5b2f 100644 --- a/action.yaml +++ b/action.yaml @@ -10,7 +10,7 @@ runs: steps: - name: "run unit tests" shell: bash - run: test.sh + run: ${{ github.action_path }}/test.sh env: LIBRARY: ${{ inputs.test }} diff --git a/test.sh b/test.sh old mode 100644 new mode 100755