HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
520 B
24 lines
520 B
#!/usr/bin/env bash |
|
|
|
set -e |
|
set -o pipefail |
|
|
|
if [[ -z $GITHUB_TOKEN ]]; then |
|
echo "No GITHUB_TOKEN secret found, artifact publishing skipped" |
|
exit |
|
fi |
|
|
|
if ! hash ghr 2> /dev/null; then |
|
_GHR_VER=v0.14.0 |
|
_GHR=ghr_${_GHR_VER}_linux_amd64 |
|
mkdir -p $HOME/.local/bin |
|
curl -sfL https://github.com/tcnksm/ghr/releases/download/$_GHR_VER/$_GHR.tar.gz | |
|
tar xz -C $HOME/.local/bin --strip-components=1 $_GHR/ghr |
|
fi |
|
|
|
ghr -replace \ |
|
-u $CIRCLE_PROJECT_USERNAME \ |
|
-r $CIRCLE_PROJECT_REPONAME \ |
|
--draft \ |
|
$CIRCLE_TAG \ |
|
$1
|
|
|