-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsync.sh
executable file
·19 lines (14 loc) · 1013 Bytes
/
sync.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
echo "syncing html"
aws s3 sync public/. s3://$1/ --size-only --acl "public-read" --cache-control "public,max-age=43200" --exclude '*.*' --include '*.html'
echo "syncing html complete"
echo "syncing js and css"
aws s3 sync public/. s3://$1/ --size-only --acl "public-read" --cache-control "public,max-age=43200" --exclude '*.*' --include '*.js' --include '*.css'
echo "syncing js and css complete"
echo "syncing images"
aws s3 sync public/. s3://$1/ --size-only --acl "public-read" --cache-control "public,max-age=31536000" --exclude '*.*' --include '*.jpg' --include '*.png' --include '*.gif'
echo "syncing images complete"
echo "syncing rest"
aws s3 sync public/. s3://$1/ --size-only --acl "public-read" --cache-control "public,max-age=43200" --exclude '*.html' --exclude '*.js' --exclude '*.css' --exclude '*.jpg' --exclude '*.png' --exclude '*.gif'
echo "syncing rest complete"
aws cloudfront create-invalidation --distribution-id EGOQYHI9D5FFP --paths /. /index.html /atom.xml /sitemap.xml