mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# We do not set -x because this would leak the oauth access token.
|
|
set +x
|
|
|
|
set -e
|
|
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y curl jq
|
|
|
|
OAUTH_TOKEN="$(cat "$DOWNLOADSECUREFILE_SECUREFILEPATH")"
|
|
./ci/srht/on_master_success "$VERSION" "$OAUTH_TOKEN"
|