aboutsummaryrefslogblamecommitdiff
path: root/aux/workflow/dist.sh
blob: 8f8f61707e6229b8237d5a4b0530239a638a8c07 (plain) (tree)
1
2
3
4
5
6
7
8
9



         

              
 

                                                     



                                                                      
                                            


        





                                                                 
#!/bin/sh
set -eu

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

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 ! grep -q "^# $VERSION - $DATE$" CHANGELOG.md; then
  echo "Missing '# $VERSION - $DATE' entry from CHANGELOG.md" >&2
  exit 1
fi

git tag "$VVERSION"