We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c9721e commit 591eb51Copy full SHA for 591eb51
assets/install_github_actions_runner.sh.tftpl
@@ -49,6 +49,10 @@ RUNNER_VERSION=${runner_version}
49
# shellcheck disable=SC2154
50
RUNNER_USER=${runner_user}
51
52
+# Install hcl2json
53
+curl -L -o hcl2json "https://github.com/tmccombs/hcl2json/releases/latest/download/hcl2json_linux_$RUNNER_ARCH"
54
+install -m 0755 hcl2json /usr/local/bin/hcl2json
55
+
56
# Get the latest version
57
if [ "$RUNNER_VERSION" = "latest" ]; then
58
RUNNER_VERSION=$(curl -sS -L \
0 commit comments