We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d04475 commit 7d216efCopy full SHA for 7d216ef
1 file changed
scripts/download-semaphore.sh
@@ -1,12 +1,17 @@
1
#!/bin/bash
2
3
-set -xe
+set -e
4
5
target=semaphore
6
7
# Download the latest semaphore release for Travis
8
9
-output="$(curl -s https://api.github.com/repos/getsentry/semaphore/releases/latest)"
+output="$(
10
+ curl -s \
11
+ https://api.github.com/repos/getsentry/semaphore/releases/latest?access_token=$GITHUB_API_TOKEN
12
+)"
13
+
14
+echo "$output"
15
16
output="$(echo "$output" \
17
| grep "Linux" \
0 commit comments