From c6e1cfee51f8b976378f5979e3cebd009f08dc23 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Sat, 26 Feb 2022 23:08:01 +0300 Subject: [PATCH] Fixed required shell property --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 37d0c86..b7b1d1a 100644 --- a/action.yml +++ b/action.yml @@ -25,5 +25,8 @@ runs: using: "composite" steps: - run: brew install -cask ngrok + shell: bash - run: ngrok authtoken ${{ inputs.ngrok_authtoken }} - - run: (ngrok ${{ inputs.protocol }} ${{ inputs.port }}) & sleep ${{ inputs.timeout }} ; kill $! \ No newline at end of file + shell: bash + - run: (ngrok ${{ inputs.protocol }} ${{ inputs.port }}) & sleep ${{ inputs.timeout }} ; kill $! + shell: bash \ No newline at end of file