mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00:00
7f19a04f0f
* update daily CI to include cluster and sentinel tests * update daily CI to run when creating a new release * update release scripts to work on the new redis.io hosts
15 lines
329 B
Bash
Executable File
15 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# != "1" ]
|
|
then
|
|
echo "Usage: ./utils/releasetools/01_create_tarball.sh <version_tag>"
|
|
exit 1
|
|
fi
|
|
|
|
TAG=$1
|
|
TARNAME="redis-${TAG}.tar"
|
|
echo "Generating /tmp/${TARNAME}"
|
|
git archive $TAG --prefix redis-${TAG}/ > /tmp/$TARNAME || exit 1
|
|
echo "Gizipping the archive"
|
|
rm -f /tmp/$TARNAME.gz
|
|
gzip -9 /tmp/$TARNAME
|