File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -490,8 +490,8 @@ jobs:
490
490
command : |
491
491
PLATFORM=linux ARCH=x64 .circleci/redisstack/build_modules.sh
492
492
PLATFORM=linux ARCH=arm64 .circleci/redisstack/build_modules.sh
493
- # PLATFORM=darwin ARCH=x64 .circleci/redisstack/build_modules.sh
494
- # PLATFORM=darwin ARCH=arm64 .circleci/redisstack/build_modules.sh
493
+ PLATFORM=darwin ARCH=x64 .circleci/redisstack/build_modules.sh
494
+ PLATFORM=darwin ARCH=arm64 .circleci/redisstack/build_modules.sh
495
495
- persist_to_workspace :
496
496
root : .
497
497
paths :
Original file line number Diff line number Diff line change 2
2
3
3
PLATFORM=${PLATFORM:- ' linux' }
4
4
ELECTRON_VERSION=$( cat electron/version)
5
- VERSION=${ELECTRON_VERSION:- ' redisstack' }
6
5
ARCH=${ARCH:- ' x64' }
7
6
# FILENAME="RedisInsight-$PLATFORM.$VERSION.$ARCH.zip"
8
- FILENAME=" RedisInsight-preview-web-$PLATFORM .$ARCH .zip "
7
+ FILENAME=" RedisInsight-preview-web-$PLATFORM .$ARCH .tar.gz "
9
8
10
9
# reinstall backend prod dependencies only (optimise space)
11
10
rm -rf redisinsight/api/node_modules
@@ -20,11 +19,11 @@ cp redisinsight/api/.yarnclean.prod redisinsight/api/.yarnclean
20
19
yarn --cwd ./redisinsight/api autoclean --force
21
20
22
21
rm -rf redisinsight/build.zip
23
- cd redisinsight && zip -r build.zip \
22
+ cd redisinsight && tar -czvf build.tar.gz \
24
23
api/node_modules \
25
24
api/dist \
26
25
ui/dist \
27
26
&& cd ..
28
27
29
28
mkdir -p release/redisstack
30
- cp redisinsight/build.zip release/redisstack/" $FILENAME "
29
+ cp redisinsight/build.tar.gz release/redisstack/" $FILENAME "
You can’t perform that action at this time.
0 commit comments