From 245ae228cf692a0415ed7d53037bbd2ccb470bce Mon Sep 17 00:00:00 2001 From: Sakura Akeno Isayeki Date: Thu, 16 Nov 2023 20:59:55 +0100 Subject: [PATCH 1/2] feat(action.yml): update setup command - Updated the setup command in the action.yml file to use "bash" instead of "./setup.sh" - The new command is now "bash setup.sh -v ${{ inputs.version }}" --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 00de4c4..f6fdf4e 100644 --- a/action.yml +++ b/action.yml @@ -18,4 +18,4 @@ runs: - name: Setup MoltenObsidian CLI shell: bash - run: ./setup.sh -v ${{ inputs.version }} \ No newline at end of file + run: bash setup.sh -v ${{ inputs.version }} \ No newline at end of file From e4a2aa5c11a64637a959c244d910f5335ce47134 Mon Sep 17 00:00:00 2001 From: Sakura Akeno Isayeki Date: Thu, 16 Nov 2023 21:01:41 +0100 Subject: [PATCH 2/2] build: Set permissions for action Set permissions for the action.yml file in the GitHub Actions workflow to ensure it can be executed. --- .github/workflows/run-setup-successful.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-setup-successful.yml b/.github/workflows/run-setup-successful.yml index 2fc89f5..e033884 100644 --- a/.github/workflows/run-setup-successful.yml +++ b/.github/workflows/run-setup-successful.yml @@ -23,7 +23,7 @@ jobs: - name: Set permissions for action run: | echo "::debug::::group::Set permissions for action" - chmod +x action.yml setup.sh + chmod +x action.yml echo "::endgroup::" - name: Setup MoltenObsidian CLI