prepare.sh (374B)
1 #!/bin/sh 2 3 set -o errexit 4 set -o nounset 5 set -o xtrace 6 7 apt-get -y update 8 9 # Install: 10 # * curl to fetch sentry-cli 11 # * jq to parse hgmo pushlog 12 apt-get install -y \ 13 curl \ 14 jq 15 16 # Install sentry-cli to publish releases 17 curl -L https://github.com/getsentry/sentry-cli/releases/download/1.63.1/sentry-cli-Linux-x86_64 -o /usr/bin/sentry-cli 18 chmod +x /usr/bin/sentry-cli