ModernFix-fix/release.sh
2023-04-25 14:41:33 -04:00

10 lines
171 B
Bash
Executable File

#!/bin/bash
echo -n "Currently on: "
git describe
echo -n "New version: "
read newtag
git tag -a $newtag -m "$newtag"
git push
git push --tags
./gradlew publishToModSites