diff --git a/posix/clone b/posix/clone index 407c43a..e4a3a3d 100755 --- a/posix/clone +++ b/posix/clone @@ -52,7 +52,12 @@ export GIT_COMMITTER_EMAIL=${DRONE_COMMIT_AUTHOR_EMAIL} # TODO we should ultimately look at the ref, since # we need something compatible with deployment events. -case $DRONE_BUILD_EVENT in +CLONE_TYPE=$DRONE_BUILD_EVENT +case $DRONE_COMMIT_REF in + refs/tags/* ) CLONE_TYPE=tag ;; +esac + +case $CLONE_TYPE in pull_request) clone-pull-request ;;