Skip to content

Commit 5dd031c

Browse files
committed
fix release script for DE
1 parent fb1e437 commit 5dd031c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

data-exports/utils/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ for file in "${files[@]}"; do
99
version=$(grep '^Description:' "data-exports/deploy/${file}.yaml" | grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+')
1010
source_path="data-exports/deploy/${file}.yaml"
1111
echo $source_path
12-
aws s3 sync "$source_path" "s3://$CENTRAL_BUCKET/cfn/data-exports/$version/${file}.yaml"
13-
aws s3 sync "$source_path" "s3://$CENTRAL_BUCKET/cfn/data-exports/latest/${file}.yaml"
14-
aws s3 sync "$source_path" "s3://$CENTRAL_BUCKET/cfn/${file}.yaml"
12+
aws s3 cp "$source_path" "s3://$CENTRAL_BUCKET/cfn/data-exports/$version/${file}.yaml"
13+
aws s3 cp "$source_path" "s3://$CENTRAL_BUCKET/cfn/data-exports/latest/${file}.yaml"
14+
aws s3 cp "$source_path" "s3://$CENTRAL_BUCKET/cfn/${file}.yaml"
1515
done

0 commit comments

Comments
 (0)