mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-28 01:31:05 -06:00
11 lines
271 B
Bash
Executable File
11 lines
271 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}
|
|
PREVIEW_TAG="${RELEASE_VERSION}-preview"
|
|
printf "preview tag: '%s'\n" "${PREVIEW_TAG}"
|
|
|
|
git tag "${PREVIEW_TAG}"
|
|
|