ReaderforSelfoss/version.sh
2018-05-25 22:22:32 +02:00

11 lines
168 B
Bash
Executable File

#!/bin/bash
# You can pass --force as first parameter to force push and tag creation.
echo "Creating tag $1"
git tag $1 $@
echo "Pushing tag"
git push origin $1 $@