From 30fd8b92e012a3b2bc6919834ab7b5bcc468ac82 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 5 Jan 2024 15:10:46 +0530 Subject: [PATCH] fix: add shell keys to command steps --- package/action/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/action/action.yml b/package/action/action.yml index f479efa..32fc77f 100644 --- a/package/action/action.yml +++ b/package/action/action.yml @@ -12,6 +12,10 @@ runs: shell: sh steps: - run: "wget https://github.com/CompeyDev/setup-lune/releases/download/latest/setup-lune-${{ runner.os }}-x86_64.zip" + shell: bash - run: "unzip setup-lune-${{ runner.os }}-x86_64.zip" + shell: bash - run: "chmod +X ./setup-lune && ./setup-lune" + shell: bash - run: "rm -rf ./setup-lune" + shell: bash