From 2bc091d4935e9c34c76f50108d18e8e884366477 Mon Sep 17 00:00:00 2001 From: Jon Pugh Date: Fri, 8 May 2026 16:31:17 -0400 Subject: [PATCH 1/4] Fix PATH setting, use absolute path provided by GITHUB_WORKSPACE. --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 027b5d3..5942b21 100644 --- a/action.yml +++ b/action.yml @@ -20,5 +20,7 @@ runs: - name: Set path shell: bash + env: + SRC_PATH: ${{ inputs.path }}/src run: | - echo "$(pwd)/${{ inputs.path }}/src" >> $GITHUB_PATH + echo "$WORKSPACE/$SRC_PATH" >> $GITHUB_PATH From d56f1f4978d7b19e8fd2ad2391bc8c7c4c5fcdb1 Mon Sep 17 00:00:00 2001 From: Jon Pugh Date: Fri, 8 May 2026 16:33:39 -0400 Subject: [PATCH 2/4] Test that run-with-summary works with working dir --- .github/workflows/actions.install.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/actions.install.yml b/.github/workflows/actions.install.yml index 83effc5..0305daa 100644 --- a/.github/workflows/actions.install.yml +++ b/.github/workflows/actions.install.yml @@ -26,6 +26,7 @@ jobs: Use this file as an example to install and use the scripts. - run: run-with-summary which run-with-summary + working-directory: .custom env: SUCCESS: "run-with-summary is installed." DEBUG: yes From 4f8eb2ff96c85d2b6ce70398949fe3d376a2c6c6 Mon Sep 17 00:00:00 2001 From: Jon Pugh Date: Fri, 8 May 2026 16:36:18 -0400 Subject: [PATCH 3/4] use our branch --- .github/workflows/actions.install.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.install.yml b/.github/workflows/actions.install.yml index 0305daa..458a2f5 100644 --- a/.github/workflows/actions.install.yml +++ b/.github/workflows/actions.install.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: jonpugh/goatscripts@main + - uses: jonpugh/goatscripts@bug/path with: path: .custom/goatscripts @@ -31,6 +31,7 @@ jobs: SUCCESS: "run-with-summary is installed." DEBUG: yes + - run: run-with-summary curl https://api.github.com/ env: SUCCESS: GitHub API is active From 08a1992cad5b1f200ef7db598a91afd5b43bdd37 Mon Sep 17 00:00:00 2001 From: Jon Pugh Date: Fri, 8 May 2026 16:40:55 -0400 Subject: [PATCH 4/4] duh --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5942b21..f54506b 100644 --- a/action.yml +++ b/action.yml @@ -23,4 +23,4 @@ runs: env: SRC_PATH: ${{ inputs.path }}/src run: | - echo "$WORKSPACE/$SRC_PATH" >> $GITHUB_PATH + echo "$GITHUB_WORKSPACE/$SRC_PATH" >> $GITHUB_PATH