2018-07-11 17:56:13 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# required environment variables:
|
|
|
|
# AWS_ACCESS_KEY_ID
|
|
|
|
# AWS_SECRET_ACCESS_KEY
|
|
|
|
# AWS_DEFAULT_REGION
|
|
|
|
AWS_S3_BUCKET="kremalicious.com"
|
2018-11-04 17:09:27 +01:00
|
|
|
SITEMAP_URL="https%3A%2F%2Fkremalicious.com%2Fsitemap.xml"
|
|
|
|
|
2018-07-11 17:56:13 +02:00
|
|
|
#
|
|
|
|
set -e;
|
|
|
|
|
|
|
|
function s3sync {
|
2022-09-21 12:24:54 +02:00
|
|
|
aws s3 sync ./public s3://"$1" \
|
2019-10-06 16:45:58 +02:00
|
|
|
--include "*" \
|
|
|
|
--exclude "*.html" \
|
|
|
|
--exclude "sw.js" \
|
|
|
|
--exclude "*page-data.json" \
|
2019-11-09 12:59:46 +01:00
|
|
|
--exclude "*app-data.json" \
|
2019-10-06 16:45:58 +02:00
|
|
|
--exclude "chunk-map.json" \
|
|
|
|
--exclude "sitemap.xml" \
|
2019-11-09 12:52:13 +01:00
|
|
|
--exclude "feed.xml" \
|
|
|
|
--exclude "feed.json" \
|
2019-10-06 16:45:58 +02:00
|
|
|
--exclude ".iconstats.json" \
|
|
|
|
--exclude "humans.txt" \
|
|
|
|
--exclude "robots.txt" \
|
2018-12-01 20:42:42 +01:00
|
|
|
--cache-control public,max-age=31536000,immutable \
|
|
|
|
--delete \
|
2018-12-07 14:12:01 +01:00
|
|
|
--acl public-read
|
2018-07-11 17:56:13 +02:00
|
|
|
|
2022-09-21 12:24:54 +02:00
|
|
|
aws s3 sync ./public s3://"$1" \
|
2018-12-01 20:42:42 +01:00
|
|
|
--exclude "*" \
|
|
|
|
--include "*.html" \
|
|
|
|
--include "sw.js" \
|
2019-10-06 16:45:58 +02:00
|
|
|
--include "*page-data.json" \
|
2019-11-09 12:59:46 +01:00
|
|
|
--include "*app-data.json" \
|
2018-12-07 14:12:01 +01:00
|
|
|
--include "chunk-map.json" \
|
|
|
|
--include "sitemap.xml" \
|
2019-11-09 12:52:13 +01:00
|
|
|
--include "feed.xml" \
|
|
|
|
--include "feed.json" \
|
2018-12-07 14:12:01 +01:00
|
|
|
--include ".iconstats.json" \
|
|
|
|
--include "humans.txt" \
|
|
|
|
--include "robots.txt" \
|
2018-12-01 20:42:42 +01:00
|
|
|
--cache-control public,max-age=0,must-revalidate \
|
|
|
|
--delete \
|
2018-12-07 14:12:01 +01:00
|
|
|
--acl public-read
|
2018-07-11 17:56:13 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 20:37:10 +01:00
|
|
|
s3sync $AWS_S3_BUCKET
|
2018-07-11 17:56:13 +02:00
|
|
|
|
2021-01-30 20:37:10 +01:00
|
|
|
# ping search engines
|
|
|
|
# returns: HTTP_STATUSCODE URL
|
|
|
|
curl -sL -w "%{http_code} %{url_effective}\\n" \
|
|
|
|
"http://www.google.com/webmasters/tools/ping?sitemap=$SITEMAP_URL" -o /dev/null \
|
|
|
|
"http://www.bing.com/webmaster/ping.aspx?siteMap=$SITEMAP_URL" -o /dev/null
|