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.
1 parent 86695ef commit 0dc8eafCopy full SHA for 0dc8eaf
.circleci/config.yml
@@ -23,7 +23,11 @@ jobs:
23
- run:
24
name: "Install: tflint"
25
command: |
26
- apk add wget
+ apk add jq wget
27
+ pkg_arch=linux_amd64
28
+ dl_url=$(curl -s https://api.github.com/repos/wata727/tflint/releases/latest | jq -r ".assets[] | select(.name | test(\"${pkg_arch}\")) | .browser_download_url")
29
+ echo "Download URL: ${dl_url}"
30
+ #wget ${dl_url}
31
wget https://github.com/wata727/tflint/releases/download/v0.5.4/tflint_linux_amd64.zip
32
unzip tflint_linux_amd64.zip
33
mkdir -p /usr/local/tflint/bin
0 commit comments