/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packaging/prerelease/s3_index.sh
47 строк
1 KB
Mike Maxim
move release into client repo
05 янв 2024, 22:01
05 янв 2024, 22:01
ba5c0da
Код
Авторство
О чём код?
#!/usr/bin/env bash set -e -u -o pipefail # Fail on error dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) cd "$dir" # If editing this file, you may also want to update windows/s3_prerelease.cmd client_dir="$dir/../.." bucket_name=${BUCKET_NAME:-} platform=${PLATFORM:-} istest=${TEST:-} if [ "$bucket_name" = "" ]; then echo "No BUCKET_NAME" exit 1 fi if [ "$platform" = "" ]; then echo "No PLATFORM" exit 1 fi echo "Loading release tool" (cd "$client_dir/go/buildtools"; go install "github.com/keybase/client/go/release") release_bin="$GOPATH/bin/release" echo "$(go version)" echo "Creating index files" if [ "$platform" = "darwin" ] || [ "$platform" = "darwin-arm64" ]; then prefix=$platform if [ "$istest" = "1" ]; then prefix="$platform-test" fi "$release_bin" index-html --bucket-name="$bucket_name" --prefixes="$prefix/" --upload="$prefix/index.html" "$release_bin" index-html --bucket-name="$bucket_name" --prefixes="electron-sourcemaps/" --upload="electron-sourcemaps/index.html" elif [ "$platform" = "linux" ]; then "$release_bin" index-html --bucket-name="$bucket_name" --prefixes="linux_binaries/deb/" --upload="linux_binaries/deb/index.html" "$release_bin" index-html --bucket-name="$bucket_name" --prefixes="linux_binaries/rpm/" --upload="linux_binaries/rpm/index.html" elif [ "$platform" = "windows" ]; then "$release_bin" index-html --bucket-name="$bucket_name" --prefixes="windows/" --upload="windows/index.html" else echo "Invalid platform: $platform" exit 1 fi