mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-21 16:27:51 -06:00
22 lines
584 B
Bash
Executable File
22 lines
584 B
Bash
Executable File
#!/bin/bash
|
|
cd mvn-defaults
|
|
#set -x
|
|
CURRENT_VERSION=$(mvn help:evaluate -Dexpression=revision -q -DforceStdout)
|
|
RELEASE_VERSION=${CURRENT_VERSION%%-SNAPSHOT}
|
|
RELEASE_TAG="${RELEASE_VERSION}-release"
|
|
printf "release tag: '%s'\n" "${RELEASE_TAG}"
|
|
set -e
|
|
|
|
if [ "$1" == "-f" ]
|
|
then
|
|
git tag -f "${RELEASE_TAG}" \
|
|
&& git push -f origin "${RELEASE_TAG}" \
|
|
&& printf "force pushed tag %s to origin, triggering build.\n" "${RELEASE_TAG}"
|
|
else
|
|
git tag "${RELEASE_TAG}" \
|
|
&& git push origin "${RELEASE_TAG}" \
|
|
&& printf "pushed tag %s to origin, triggering build.\n" "${RELEASE_TAG}"
|
|
fi
|
|
|
|
|