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