babashka/.circleci/script/deploy
2019-08-09 15:43:27 +02:00

8 lines
130 B
Bash
Executable file

#!/usr/bin/env bash
if [ -z "$CIRCLE_PULL_REQUEST" ] && [ "$CIRCLE_BRANCH" = "master" ]
then
lein deploy clojars
fi
exit 0;