babashka/.circleci/script/deploy

9 lines
130 B
Text
Raw Normal View History

2019-08-09 12:51:42 +00:00
#!/usr/bin/env bash
if [ -z "$CIRCLE_PULL_REQUEST" ] && [ "$CIRCLE_BRANCH" = "master" ]
then
lein deploy clojars
fi
exit 0;