From 8792e072108b46cda4d80a9d47d43e3c460e5c62 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Wed, 7 Mar 2018 08:00:55 +1300 Subject: docs: enable upload to docs.mitmproxy.org/master --- docs/ci | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 docs/ci (limited to 'docs/ci') diff --git a/docs/ci b/docs/ci new file mode 100755 index 00000000..416738ae --- /dev/null +++ b/docs/ci @@ -0,0 +1,13 @@ +#!/bin/bash + +# This script gets run from CI to render and upload docs + +./build + +# Only upload if we have defined credentials - we only have these defined for +# trusted commits (i.e. not PRs). +if [[ ! -z "${AWS_ACCESS_KEY_ID}" && $TRAVIS_BRANCH == "updocs" ]]; then + aws s3 sync --acl public-read ./public s3://docs.mitmproxy.org/master + # aws cloudfront create-invalidation --distribution-id E3UCZ4MLN4TO7U \ + # --paths "/master" +fi -- cgit v1.2.3