Files
runner-images/images/linux/scripts/installers/yq.sh
2022-06-06 09:30:14 +02:00

11 lines
273 B
Bash

#!/bin/bash -e
# Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh
YQ_URL="https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64"
download_with_retries "$YQ_URL" "/usr/bin" "yq"
chmod +x /usr/bin/yq
invoke_tests "Tools" "yq"