10 lines
171 B
Bash
Executable File
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
|