From be427077487cd59926396fdd43a7b3ab7d3ccf46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kriszti=C3=A1n=20Sz=C5=B1cs?= Date: Sun, 21 Jul 2024 23:37:51 +0200 Subject: [PATCH] chore: setup github action path before running setup-mojo.sh --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 48aa913..71e0273 100644 --- a/action.yml +++ b/action.yml @@ -7,5 +7,10 @@ inputs: runs: using: 'composite' steps: + - name: Set GitHub Path + run: echo "$GITHUB_ACTION_PATH" >> $GITHUB_PATH + shell: bash + env: + GITHUB_ACTION_PATH: ${{ github.action_path }} - run: ./setup-mojo.sh ${{ inputs.version }} shell: bash