Skip to content

Commit

Permalink
CircleCI: fix deploy scripts (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafie authored Jan 21, 2021
1 parent fc3b248 commit abc1d18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
name: Deploy Snapshots to S3
command: |
cd /workspace/snapshots
for f in *.zip *.tgz; do
for f in `find . -name "*.zip" -or -name "*.tgz"`; do
aws s3 cp $f s3://redismodules/$PACKAGE_NAME/snapshots/ --acl public-read
done
Expand All @@ -123,8 +123,8 @@ jobs:
- run:
name: Deploy Releases to S3
command: |
cd /workspace
for f in *.zip *.tgz; do
cd /workspace/release
for f in `find . -name "*.zip" -or -name "*.tgz"`; do
aws s3 cp $f s3://redismodules/$PACKAGE_NAME/ --acl public-read
done
Expand Down

0 comments on commit abc1d18

Please sign in to comment.