mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
47 lines
900 B
Bash
Executable File
47 lines
900 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
usage() {
|
|
echo "$0 <repo> <tag> [<release name>]" >&2;
|
|
}
|
|
|
|
if [ "$1" = "-h" -o "$1" = "--help" ]; then
|
|
usage
|
|
exit 1;
|
|
fi
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
REPO=$(git ls-remote --get-url origin | \
|
|
sed -u 's/git@//g; s/https:\/\///g; s/github.com\///g; s/\.git//g')
|
|
else
|
|
REPO=$1
|
|
fi
|
|
|
|
if [ -z "$2" ]
|
|
then
|
|
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|
else
|
|
TAG=$2
|
|
fi
|
|
|
|
BODY=$(awk "/$TAG/ {print; exit}" RS="\n\n" ORS="\n\n" CHANGELOG.md | tail -n+2)
|
|
|
|
PAYLOAD=$(
|
|
jq --null-input \
|
|
--arg t "$TAG" \
|
|
--arg n "$TAG" \
|
|
--arg b "$BODY" \
|
|
'{ tag_name: $t, name: $n, body: $b}'
|
|
)
|
|
|
|
TAG_ID=$(curl -s "https://api.github.com/repos/$REPO/releases/tags/$TAG" | jq -r '.id')
|
|
|
|
curl --fail \
|
|
--netrc \
|
|
--silent \
|
|
--location \
|
|
--request PATCH \
|
|
--data "$PAYLOAD" \
|
|
"https://api.github.com/repos/${REPO}/releases/${TAG_ID}" |