1
0
mirror of https://github.com/Luzifer/past3.git synced 2024-09-19 08:52:59 +00:00

Add upload-script

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-01-14 22:10:21 +01:00
parent dd6c9ee00e
commit 297e02ac3b
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

18
upload.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/bash
set -euxo pipefail
BUCKET=${BUCKET:-}
[ -z "${BUCKET}" ] && {
echo 'You need to specify $BUCKET'
exit 2
}
# Generate assets
make clean generate
# Upload assets
aws s3 cp --acl=public-read --content-type=application/javascript \
public/app.js "s3://${BUCKET}/app.js"
aws s3 cp --acl=public-read --content-type=text/html \
public/index.html "s3://${BUCKET}/index.html"