mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-11 16:41:06 +00:00
uncomment s3sync, add usage
This commit is contained in:
parent
c21573b1cd
commit
867156562d
@ -4,6 +4,17 @@
|
|||||||
# Install awscli (pip install awscli)
|
# Install awscli (pip install awscli)
|
||||||
# Configure access credentials (aws configure), region is "eu-central-1"
|
# Configure access credentials (aws configure), region is "eu-central-1"
|
||||||
|
|
||||||
|
# Usage:
|
||||||
|
# ./s3sync.sh DESTINATION SOURCE [clear]
|
||||||
|
# @DESTINATION: required, destination server
|
||||||
|
# @SOURCE: required, build
|
||||||
|
# @CLEAR: optional, delete previous uploads
|
||||||
|
# ./s3sync.sh stage beta
|
||||||
|
# ./s3sync.sh stage stable
|
||||||
|
# ./s3sync.sh stage stable clear
|
||||||
|
# ./s3sync.sh beta beta
|
||||||
|
# ./s3sync.sh stable stable
|
||||||
|
|
||||||
function confirm {
|
function confirm {
|
||||||
read -r -p "Are you sure? [y/N] " response
|
read -r -p "Are you sure? [y/N] " response
|
||||||
if [[ $response =~ ^(yes|y)$ ]]; then
|
if [[ $response =~ ^(yes|y)$ ]]; then
|
||||||
@ -17,7 +28,7 @@ function confirm {
|
|||||||
# Validate params
|
# Validate params
|
||||||
if [ "x$1" == "x" ] || [ "x$2" == "x" ]; then
|
if [ "x$1" == "x" ] || [ "x$2" == "x" ]; then
|
||||||
echo "Invalid params"
|
echo "Invalid params"
|
||||||
echo "./s3sync.sh beta|stable stage|beta|stable [clear]"
|
echo "./s3sync.sh stage|beta|stable beta|stable [clear]"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -61,15 +72,15 @@ if [ "x$1" == "xbeta" ] || [ "x$1" == "xstable" ]; then
|
|||||||
confirm
|
confirm
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# set -e
|
set -e
|
||||||
# cd `dirname $0`
|
cd `dirname $0`
|
||||||
|
|
||||||
# if [ "x$3" == "x-d" ]; then
|
if [ "x$3" == "x-clear" ]; then
|
||||||
# aws s3 sync --delete --cache-control 'public, max-age=3600' $SOURCE s3://$BUCKET/next
|
aws s3 sync --delete --cache-control 'public, max-age=3600' $SOURCE s3://$BUCKET/next
|
||||||
# else
|
else
|
||||||
# aws s3 sync --cache-control 'public, max-age=3600' $SOURCE s3://$BUCKET/next
|
aws s3 sync --cache-control 'public, max-age=3600' $SOURCE s3://$BUCKET/next
|
||||||
# fi
|
fi
|
||||||
|
|
||||||
# aws cloudfront create-invalidation --distribution-id $DISTRIBUTION_ID --paths '/next/*'
|
aws cloudfront create-invalidation --distribution-id $DISTRIBUTION_ID --paths '/next/*'
|
||||||
|
|
||||||
echo "DONE"
|
echo "DONE"
|
Loading…
Reference in New Issue
Block a user