mitmproxy/docs/upload-archive
Aldo Cortesi a68c7ffb27 docs: add build and upload scripts
The upload scripts might be unified down the track, or might not. CloudFront is
not set up for the docs bucket yet, so CDN invalidation is commented out. This
will be added later.
2018-03-05 10:51:46 +13:00

18 lines
438 B
Bash
Executable File

#!/bin/sh
if [[ $# -eq 0 ]] ; then
echo "Please supply a version, e.g. 'v3'"
exit 1
fi
# This script uploads docs to a specified archive version.
SPATH="/archive/$1"
aws configure set preview.cloudfront true
aws --profile mitmproxy \
s3 sync --acl public-read ./public s3://docs.mitmproxy.org$SPATH
# aws --profile mitmproxy \
# cloudfront create-invalidation --distribution-id E3UCZ4MLN4TO7U \
# --paths "$SPATH"