aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/dist.sh
blob: 45f8d7ea20e8d2cef7cf5805cf4025cc03f3f920 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
set -eu

DATE="$1"
VERSION="$2"
VVERSION="v$2"
PROJECT="$3"

if git show "$VVERSION" 1>/dev/null 2>/dev/null; then
	echo "Version '$VVERSION' already exists." >&2
	exit 1
fi

if [ "$DATE" != "$(git log -1 --format=%cd --date=short HEAD)" ]; then
	echo "Date '$DATE' is not up-to-date." >&2
	exit 1
fi

if [ "Release $VVERSION" != "$(git log --format=%B -1 HEAD | head -n1)" ]; then
	echo "Commit message isn't 'Release $VVERSION'." >&2
	exit 1
fi

sh aux/workflow/assert-changelog.sh "$DATE" "$VERSION" "$PROJECT"

git tag "$VVERSION"

sh aux/workflow/sign-tarballs.sh "$PROJECT"