57 lines
1.6 KiB
Bash
Executable File
57 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# strict mode
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
if [[ -z ${DRY_RUN:-} ]]; then
|
|
PREFIX=""
|
|
else
|
|
PREFIX="echo"
|
|
fi
|
|
|
|
# input validation
|
|
if [[ -z ${GITHUB_TOKEN:-} ]]; then
|
|
echo "GITHUB_TOKEN environment variable must be set before running." >&2
|
|
exit 1
|
|
fi
|
|
if [[ $# -ne 1 || $1 == "" ]]; then
|
|
echo "This program requires one argument: the version number, in 'vM.N.P' format." >&2
|
|
exit 1
|
|
fi
|
|
VERSION=$1
|
|
|
|
# Change to root of the repo
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# GitHub release
|
|
|
|
$PREFIX git tag "$VERSION"
|
|
# make sure GITHUB_TOKEN is exported, for the benefit of this next command
|
|
export GITHUB_TOKEN
|
|
GO111MODULE=on $PREFIX make release
|
|
# if that was successful, it could have touched go.mod and go.sum, so revert those
|
|
$PREFIX git checkout go.mod go.sum
|
|
|
|
# Docker release
|
|
|
|
# make sure credentials are valid for later push steps; this might
|
|
# be interactive since this will prompt for username and password
|
|
# if there are no valid current credentials.
|
|
$PREFIX docker login
|
|
echo "$VERSION" > VERSION
|
|
$PREFIX docker build -t "fullstorydev/grpcurl:${VERSION}" .
|
|
rm VERSION
|
|
# push to docker hub, both the given version as a tag and for "latest" tag
|
|
$PREFIX docker push "fullstorydev/grpcurl:${VERSION}"
|
|
$PREFIX docker tag "fullstorydev/grpcurl:${VERSION}" fullstorydev/grpcurl:latest
|
|
$PREFIX docker push fullstorydev/grpcurl:latest
|
|
|
|
# Homebrew release
|
|
|
|
URL="https://github.com/fullstorydev/grpcurl/archive/${VERSION}.tar.gz"
|
|
curl -L -o tmp.tgz "$URL"
|
|
SHA="$(sha256sum < tmp.tgz | awk '{ print $1 }')"
|
|
rm tmp.tgz
|
|
HOMEBREW_GITHUB_API_TOKEN="$GITHUB_TOKEN" $PREFIX brew bump-formula-pr --url "$URL" --sha256 "$SHA" grpcurl
|