We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56bf2ac + 588dd0b commit 89a7a7fCopy full SHA for 89a7a7f
action.yml
@@ -8,7 +8,7 @@ inputs:
8
runs:
9
using: "composite"
10
steps:
11
- - run: curl -sfL https://raw.githubusercontent.com/shmokmt/actions-setup-tfcmt/main/install.sh | sudo sh -s -- -b /usr/local/bin -d
+ - run: curl -sfL https://raw.githubusercontent.com/shmokmt/actions-setup-tfcmt/main/install.sh | sudo sh -s -- -b /usr/local/bin -d ${TFCMT_VERSION}
12
shell: bash
13
env:
14
TFCMT_VERSION: ${{ inputs.version }}
install.sh
@@ -33,7 +33,7 @@ parse_args() {
33
esac
34
done
35
shift $((OPTIND - 1))
36
- TAG="${TFCMT_VERSION:-latest}"
+ TAG=$1
37
}
38
# this function wraps all the destructive operations
39
# if a curl|bash cuts off the end of the script due to
0 commit comments