mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-22 08:46:56 -06:00
30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
GIT_RELEASE_BOT_NAME=${GIT_RELEASE_BOT_NAME:?GIT_RELEASE_BOT_NAME must be provided}
|
|
GITHUB_SHA=${GITHUB_SHA:?GITHUB_SHA must be provided}
|
|
GITHUB_REF=${GITHUB_REF:?GITHUB_REF must be provided}
|
|
RELEASE_BRANCH_NAME=${RELEASE_BRANCH_NAME:?RELEASE_BRANCH_NAME must be provided}
|
|
#git rev-parse --abbrev-ref HEAD
|
|
|
|
# Filter the branch to execute the release on
|
|
readonly local current_branch=$(git rev-parse --abbrev-ref HEAD)
|
|
echo "Current branch: ${current_branch}"
|
|
if [[ -n "$RELEASE_BRANCH_NAME" && ! "${current_branch}" = "$RELEASE_BRANCH_NAME" ]]; then
|
|
echo "Skipping for ${current_branch} branch"
|
|
exit 0
|
|
fi
|
|
|
|
# Making sure we are on top of the branch
|
|
echo "Git checkout branch ${GITHUB_REF##*/}"
|
|
git checkout ${GITHUB_REF##*/}
|
|
echo "Git reset hard to ${GITHUB_SHA}"
|
|
git reset --hard ${GITHUB_SHA}
|
|
|
|
# Do the release
|
|
echo "Do mvn release:prepare..."
|
|
#mvn $MAVEN_REPO_LOCAL --batch-mode --global-settings release.xml -Dusername=$GITHUB_ACCESS_TOKEN release:prepare
|
|
mvn --batch-mode --global-settings release.xml -Dusername=$GITHUB_ACCESS_TOKEN clean release:prepare -DdevelopmentVersion=${NEXT_SNAPSHOT} -DreleaseVersion=${RELEASE_VERSION}
|
|
|