mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-25 18:03:50 +00:00
4eb6954c7d
- add clickable anchors for headers - add "outdated" warning for archived docs - add "edit on github" button - beautify template
10 lines
276 B
Bash
Executable File
10 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
aws configure set preview.cloudfront true
|
|
aws --profile mitmproxy \
|
|
s3 sync --acl public-read ./public s3://docs.mitmproxy.org/stable
|
|
aws --profile mitmproxy \
|
|
cloudfront create-invalidation --distribution-id E1TH3USJHFQZ5Q \
|
|
--paths "/stable"
|