File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -725,8 +725,11 @@ jobs:
725
725
name : publish
726
726
command : |
727
727
rm release/._* ||:
728
+ chmod +x .circleci/redisstack/sum_sha256.sh
729
+ .circleci/redisstack/sum_sha256.sh
728
730
applicationVersion=$(jq -r '.version' redisinsight/package.json)
729
- aws s3 cp release/ s3://${AWS_BUCKET_NAME_TEST}/public/rs-ri-builds/${CIRCLE_BUILD_NUM} --recursive --exclude "*.json"
731
+
732
+ aws s3 cp release/ s3://${AWS_BUCKET_NAME_TEST}/public/rs-ri-builds/${CIRCLE_BUILD_NUM} --recursive
730
733
731
734
release-aws-private :
732
735
executor : linux-executor
@@ -744,9 +747,11 @@ jobs:
744
747
- run :
745
748
name : publish
746
749
command : |
750
+ chmod +x .circleci/redisstack/sum_sha256.sh
751
+ .circleci/redisstack/sum_sha256.sh
747
752
applicationVersion=$(jq -r '.version' redisinsight/package.json)
748
753
749
- aws s3 cp release/ s3://${AWS_BUCKET_NAME}/private/${applicationVersion} --recursive --exclude "*.json"
754
+ aws s3 cp release/ s3://${AWS_BUCKET_NAME}/private/${applicationVersion} --recursive
750
755
751
756
publish-prod-aws :
752
757
executor : linux-executor
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -e
3
+
4
+ cd ./release/redisstack
5
+
6
+ for f in * .tar.gz; do
7
+ sha256sum " $f " > " $f .sha256"
8
+ done
You can’t perform that action at this time.
0 commit comments