From d82da959c539b4a7d443f0b342e898098a48c9ee Mon Sep 17 00:00:00 2001 From: Keigo Aoki Date: Mon, 21 Nov 2022 12:32:32 +0900 Subject: [PATCH] fix a shell command to expand variables --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 23f7bd5..eeaf861 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ runs: steps: - run: | TEMP_PATH="$(mktemp -d)" - curl -sfL https://raw.githubusercontent.com/Songmu/ecschedule/main/install.sh | sh -s -- -b "$TEMP_PATH" "{{ inputs.version }}" 2>&1 + curl -sfL https://raw.githubusercontent.com/Songmu/ecschedule/main/install.sh | sh -s -- -b "${TEMP_PATH}" "${{ inputs.version }}" 2>&1 sudo mv ${TEMP_PATH}/ecschedule /usr/local/bin/ecschedule rm -rf ${TEMP_PATH} shell: bash