File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -481,8 +481,7 @@ jobs:
481
481
- run :
482
482
name : Repack AppImage to tar
483
483
command : |
484
- ARCH=x64 ./.circleci/redisstack/app-image.repack.sh
485
- # ARCH=arm64 ./.circleci/redisstack/app-image.repack.sh
484
+ ARCH=x86_64 ./.circleci/redisstack/app-image.repack.sh
486
485
- run :
487
486
name : Build sources
488
487
command : ./.circleci/redisstack/build.sh
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- ARCH=${ARCH:- x64 }
3
+ ARCH=${ARCH:- x86_64 }
4
4
WORKING_DIRECTORY=$( pwd)
5
- SOURCE_APP=${SOURCE_APP:- " RedisInsight-preview -linux.AppImage" }
6
- APP_FOLDER_NAME=" RedisInsight-preview -linux"
7
- TAR_NAME=" RedisInsight-preview -app-linux.$ARCH .tar.gz"
5
+ SOURCE_APP=${SOURCE_APP:- " RedisInsight-V2 -linux- $ARCH .AppImage" }
6
+ APP_FOLDER_NAME=" RedisInsight-V2 -linux"
7
+ TAR_NAME=" RedisInsight-V2 -app-linux.$ARCH .tar.gz"
8
8
TMP_FOLDER=" /tmp/RedisInsight-app-$ARCH "
9
9
10
10
rm -rf " $TMP_FOLDER "
Original file line number Diff line number Diff line change 2
2
3
3
ARCH=${ARCH:- x64}
4
4
WORKING_DIRECTORY=$( pwd)
5
- TAR_NAME=" RedisInsight-preview -app-darwin.$ARCH .tar.gz"
6
- APP_FOLDER_NAME=" RedisInsight-preview .app"
5
+ TAR_NAME=" RedisInsight-V2 -app-darwin.$ARCH .tar.gz"
6
+ APP_FOLDER_NAME=" RedisInsight-V2 .app"
7
7
TMP_FOLDER=" /tmp/$APP_FOLDER_NAME "
8
8
9
9
rm -rf " $TMP_FOLDER "
10
10
11
11
mkdir -p " $WORKING_DIRECTORY /release/redisstack"
12
12
mkdir -p " $TMP_FOLDER "
13
13
14
- hdiutil attach " ./release/RedisInsight-preview -mac-$ARCH .dmg"
15
- cp -a /Volumes/RedisInsight-* /RedisInsight-preview .app " /tmp"
14
+ hdiutil attach " ./release/RedisInsight-V2 -mac-$ARCH .dmg"
15
+ cp -a /Volumes/RedisInsight-* /RedisInsight-V2 .app " /tmp"
16
16
cd " /tmp" || exit 1
17
17
tar -czvf " $TAR_NAME " " $APP_FOLDER_NAME "
18
18
cp " $TAR_NAME " " $WORKING_DIRECTORY /release/redisstack/"
You can’t perform that action at this time.
0 commit comments