diff --git a/.circleci/deploy.sh b/.circleci/deploy.sh
index de2be995a81fc4027a81a923c970289a56408438..db4a1d3a242095f8a94b7afb76e31d1399b0d725 100755
--- a/.circleci/deploy.sh
+++ b/.circleci/deploy.sh
@@ -28,8 +28,10 @@ if [[ -n "${CIRCLE_TAG:-}" ]]; then
   VERSION="${CIRCLE_TAG}"
 elif [[ "${CIRCLE_BRANCH:-}" == "master" ]]; then
   VERSION="canary"
+elif [[ "${CIRCLE_BRANCH:-}" == "dev-v3" ]]; then
+  VERSION="dev-v3"
 else
-  echo "Skipping deploy step; this is neither master or a tag"
+  echo "Skipping deploy step; this is neither a releasable branch or a tag"
   exit
 fi