From c87a2c07296c50a375a35579929d7d0f5616cea3 Mon Sep 17 00:00:00 2001 From: Sakura Akeno Isayeki Date: Thu, 16 Nov 2023 21:19:40 +0100 Subject: [PATCH] feat(action): update setup.sh path in action.yml The `setup.sh` path in the `action.yml` file has been updated to use the `$github.action_path` variable, ensuring compatibility with different environments. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f6fdf4e..c7fd246 100644 --- a/action.yml +++ b/action.yml @@ -18,4 +18,4 @@ runs: - name: Setup MoltenObsidian CLI shell: bash - run: bash setup.sh -v ${{ inputs.version }} \ No newline at end of file + run: bash ${{ github.action_path }}/setup.sh -v ${{ inputs.version }} \ No newline at end of file