summaryrefslogtreecommitdiff
path: root/platform/ios/scripts/deploy-snapshot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/scripts/deploy-snapshot.sh')
-rwxr-xr-xplatform/ios/scripts/deploy-snapshot.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/platform/ios/scripts/deploy-snapshot.sh b/platform/ios/scripts/deploy-snapshot.sh
deleted file mode 100755
index d0d5d59d2e..0000000000
--- a/platform/ios/scripts/deploy-snapshot.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-
-set -euo pipefail
-
-function step { >&2 echo -e "\033[1m\033[36m* $@\033[0m"; }
-function finish { >&2 echo -en "\033[0m"; }
-trap finish EXIT
-
-DATE=`date +%Y-%m-%d`
-PROJ_VERSION=$(git rev-list --count HEAD)
-SNAPSHOT_TYPE="snapshot-dynamic"
-
-step "Uploading ${SNAPSHOT_TYPE} build for ${DATE}-${PROJ_VERSION} to s3…"
-
-./platform/ios/scripts/publish.sh "${SNAPSHOT_TYPE}" "${DATE}-${PROJ_VERSION}"
-
-step "Finished deploying ${SNAPSHOT_TYPE} build in $(($SECONDS / 60)) minutes and $(($SECONDS % 60)) seconds"