-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upadate release tool script to valkey (#239)
Updated release-tool scripts to valkey, This PR covered only the file names for the tarball but still location needs to be updated accordingly. Signed-off-by: Shivshankar-Reddy <[email protected]>
- Loading branch information
1 parent
e71be72
commit a4da212
Showing
5 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,18 @@ then | |
fi | ||
|
||
echo "Uploading..." | ||
scp /tmp/redis-${1}.tar.gz [email protected]:/var/www/download/releases/ | ||
scp /tmp/valkey-${1}.tar.gz [email protected]:/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 [email protected] "cd /var/www/download; | ||
rm -rf redis-${1}.tar.gz; | ||
rm -rf valkey-${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; | ||
rm -rf valkey-stable; | ||
mv valkey-${1} valkey-stable; | ||
tar cvzf valkey-stable.tar.gz valkey-stable; | ||
rm -rf valkey-${1}.tar.gz; | ||
shasum -a 256 valkey-stable.tar.gz > valkey-stable.tar.gz.SHA256SUM; | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters