From ffe92595fcc4c131ad25bc708965ac88df917f56 Mon Sep 17 00:00:00 2001 From: Scion Date: Sat, 28 Jun 2025 22:55:12 -0700 Subject: [PATCH] Fix --- utils/find-first/action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/find-first/action.yaml b/utils/find-first/action.yaml index cb13b8e..29b6262 100644 --- a/utils/find-first/action.yaml +++ b/utils/find-first/action.yaml @@ -71,5 +71,7 @@ runs: additionalArgs: ${{ inputs.additionalArgs }} - name: "Extract information about first file." id: extract - run: sh "${{ github.action_path }}/find-first.sh" "${{ steps.find.outputs.files }}" + run: | + bash "${{ github.action_path }}/find-first.sh" "${{ steps.find.outputs.files }}" + echo "$GITHUB_OUTPUT" shell: bash