File: deploy.sh

package info (click to toggle)
typesafe-config-clojure 0.1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: xml: 74; makefile: 26; sh: 10
file content (16 lines) | stat: -rwxr-xr-x 238 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

set -e
set -x

git fetch --tags

lein test
echo "Tests passed!"

lein release
echo "Release plugin successful, pushing changes to git"

git push origin --tags HEAD:$TYPESAFE_CONFIG_BRANCH

echo "git push successful."