pre-staging

pull/2/head
mail@sobolevn.me 9 years ago
parent 874a4468d7
commit 1904ebdb86

@ -4,15 +4,16 @@ set -e
BRANCH_NAME=$(git branch | grep '*' | sed 's/* //')
if [[ "$BRANCH_NAME" == 'master' ]]; then
if [[ "$BRANCH_NAME" == 'develop' ]]; then
# Build new web documentation:
make build-gh-pages
fi
if [[ "$BRANCH_NAME" == 'develop' ]]; then
if [[ "$BRANCH_NAME" == 'staging' ]]; then
# create new release:
NEWEST_TAG=$(git describe --abbrev=0 --tags)
SCRIPT_VERSION=$(bash ${PWD}/git-secret --version)
if [[ "$NEWEST_TAG" != "v${SCRIPT_VERSION}" ]]; then
git tag -a "v${SCRIPT_VERSION}" -m "version $SCRIPT_VERSION"
git tag -a "v${SCRIPT_VERSION}" -m "version $SCRIPT_VERSION"
fi
fi

Loading…
Cancel
Save