8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
echo -n "Currently on: "
|
|
git describe
|
|
echo -n "New version: "
|
|
read newtag
|
|
git tag -a $newtag -m "$newtag"
|
|
./gradlew publishToModSites
|