xca/release/git.publish
2024-08-27 23:24:27 +02:00

26 lines
531 B
Bash
Executable File

#!/bin/sh
set -e
test -s VERSION.txt && test -s changelog && test -s README.md
test -d .git
read TVERSION < VERSION.txt
export TVERSION
releasedir="$HOME/xca-$TVERSION"
./release/gen-binary-hash "$releasedir"
git commit -a -m "Release XCA $TVERSION done"
./release/github.release.py "$TVERSION" "${releasedir}/"xca*"$TVERSION"*
cat << EOF
After verifying the commits, tags and github release,
finally do:
git push origin --tags main
scp -r ${releasedir}/html hohnstaedt.de:xca-doc/
Un-draft the release on github
EOF