Skip to content

Commit

Permalink
Add release script.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyclemson committed Sep 23, 2018
1 parent 7ec34a3 commit 101fdba
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scripts/ci/steps/release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

[ -n "$DEBUG" ] && set -x
set -e
set -o pipefail

export TERM=xterm

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"

cd "$PROJECT_DIR"

git crypt unlock
git pull

./build version:bump[minor]
./build release

0 comments on commit 101fdba

Please sign in to comment.