diff options
author | EuAndreh <eu@euandre.org> | 2021-03-01 06:51:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-01 06:51:50 -0300 |
commit | fa7c99c72d7635095e669e8aed9ef1d8db089df4 (patch) | |
tree | 680cda449bc8287cd422ab16bc23319ce68c6288 /aux/workflow/dist.sh | |
parent | TODOs.md: Add #task-319021df-ebdb-40cd-8330-329e8d01b747 (diff) | |
download | euandre.org-fa7c99c72d7635095e669e8aed9ef1d8db089df4.tar.gz euandre.org-fa7c99c72d7635095e669e8aed9ef1d8db089df4.tar.xz |
Update files under aux/
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/dist.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/aux/workflow/dist.sh b/aux/workflow/dist.sh new file mode 100755 index 0000000..afe2c92 --- /dev/null +++ b/aux/workflow/dist.sh @@ -0,0 +1,23 @@ +#!/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 + +sh aux/workflow/assert-changelog.sh "$DATE" "$VERSION" "$PROJECT" + +git tag "$VVERSION" + +sh aux/workflow/sign-tarballs.sh "$PROJECT" |