portfolio/scripts/deploy.sh

70 lines
1.7 KiB
Bash
Raw Normal View History

2018-05-14 01:50:11 +02:00
#!/usr/bin/env bash
#
# required environment variables:
# AWS_ACCESS_KEY_ID
# AWS_SECRET_ACCESS_KEY
# AWS_DEFAULT_REGION
2018-05-25 16:43:04 +02:00
AWS_S3_BUCKET="matthiaskretschmann.com"
AWS_S3_BUCKET_BETA="beta.matthiaskretschmann.com"
2018-12-02 00:10:05 +01:00
SITEMAP_URL="https%3A%2F%2Fmatthiaskretschmann.com%2Fsitemap.xml"
2018-05-14 01:50:11 +02:00
#
set -e;
2018-05-25 16:43:04 +02:00
function s3sync {
2018-12-02 00:10:05 +01:00
aws s3 sync ./public s3://"$1" \
--exclude "*" \
--include "*.js" \
--include "*.css" \
--include "static/*" \
--include "icons/*" \
--exclude "sw.js" \
--exclude "workbox*/*" \
--cache-control public,max-age=31536000,immutable \
--delete \
--acl public-read \
--quiet
2018-05-25 16:43:04 +02:00
2018-12-02 00:10:05 +01:00
aws s3 sync ./public s3://"$1" \
--exclude "*" \
--include "*.html" \
--include "sw.js" \
--cache-control public,max-age=0,must-revalidate \
--delete \
--acl public-read \
--quiet
2018-05-25 16:43:04 +02:00
}
2018-05-14 01:50:11 +02:00
##
## check for pull request against master
##
if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
2018-05-25 16:43:04 +02:00
s3sync $AWS_S3_BUCKET_BETA
2018-05-14 01:50:11 +02:00
##
## check for master push which is no pull request
##
elif [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] || [ "$TRAVIS" != true ]; then
2018-05-25 16:43:04 +02:00
s3sync $AWS_S3_BUCKET
2018-05-14 01:50:11 +02:00
2018-12-02 00:10:05 +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
2018-05-14 01:50:11 +02:00
echo "---------------------------------------------"
echo " ✓ done deployment "
echo "---------------------------------------------"
exit;
else
echo "---------------------------------------------"
echo " nothing to deploy "
echo "---------------------------------------------"
fi