summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/utils/releasetools/02_upload_tarball.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/utils/releasetools/02_upload_tarball.sh')
-rwxr-xr-xexamples/redis-unstable/utils/releasetools/02_upload_tarball.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/redis-unstable/utils/releasetools/02_upload_tarball.sh b/examples/redis-unstable/utils/releasetools/02_upload_tarball.sh
deleted file mode 100755
index ef1e777..0000000
--- a/examples/redis-unstable/utils/releasetools/02_upload_tarball.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-if [ $# != "1" ]
-then
- echo "Usage: ./utils/releasetools/02_upload_tarball.sh <version_tag>"
- exit 1
-fi
-
-echo "Uploading..."
-scp /tmp/redis-${1}.tar.gz ubuntu@host.redis.io:/var/www/download/releases/
-echo "Updating web site... "
-echo "Please check the github action tests for the release."
-echo "Press any key if it is a stable release, or Ctrl+C to abort"
-read x
-ssh ubuntu@host.redis.io "cd /var/www/download;
- rm -rf redis-${1}.tar.gz;
- wget http://download.redis.io/releases/redis-${1}.tar.gz;
- tar xvzf redis-${1}.tar.gz;
- rm -rf redis-stable;
- mv redis-${1} redis-stable;
- tar cvzf redis-stable.tar.gz redis-stable;
- rm -rf redis-${1}.tar.gz;
- shasum -a 256 redis-stable.tar.gz > redis-stable.tar.gz.SHA256SUM;
- "