mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-06 15:20:36 +00:00
20 lines
479 B
Bash
Executable File
20 lines
479 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
BRANCH_NAME=$(git branch | grep '*' | sed 's/* //')
|
|
|
|
if [[ "$BRANCH_NAME" == 'develop' ]]; then
|
|
# Build new web documentation:
|
|
make build-gh-pages
|
|
fi
|
|
|
|
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"
|
|
fi
|
|
fi
|