mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 05:07:02 +00:00
[ubuntu] Install yq (#3646)
This commit is contained in:
16
images/linux/scripts/installers/yq.sh
Normal file
16
images/linux/scripts/installers/yq.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
# Source the helpers for use with the script
|
||||
source $HELPER_SCRIPTS/install.sh
|
||||
|
||||
YQ_BINARY=yq_linux_amd64
|
||||
|
||||
# As per https://github.com/mikefarah/yq#wget
|
||||
YQ_URL=$(curl -s https://api.github.com/repos/mikefarah/yq/releases/latest | jq -r ".assets[].browser_download_url | select(endswith(\"$YQ_BINARY.tar.gz\"))")
|
||||
echo "Downloading latest yq from $YQ_URL"
|
||||
|
||||
download_with_retries "$YQ_URL" "/tmp" "${YQ_BINARY}.tar.gz"
|
||||
tar xzf "/tmp/${YQ_BINARY}.tar.gz" -C "/tmp"
|
||||
mv /tmp/${YQ_BINARY} /usr/local/bin/yq
|
||||
|
||||
invoke_tests "Tools" "yq"
|
||||
Reference in New Issue
Block a user