aaronjy-me/util/deploy-gcloud.sh
2024-03-22 17:29:10 +00:00

38 lines
1.2 KiB
Bash
Executable file

#!/bin/bash
set -e # Exit with nonzero exit code if anything fails
BUCKET_URL="gs://aaronjy-www"
BACKUP_BUCKET_URL="gs://aaronjy-www-backup"
echo "------------------------------"
echo "BACKUP CURRENT SITE FILES"
echo "------------------------------"
TIMESTAMP=$(date +%Y-%m-%d_%H:%M:%S)
gcloud transfer jobs create $BUCKET_URL $BACKUP_BUCKET_URL/$(date +%Y-%m-%d_%H:%M:%S)/ --no-async --delete-from=source-after-transfer;
echo "------------------------------"
echo "REMOVE SENSITIVE FILES"
echo "------------------------------"
rm -rfv ./out/admin/
echo "Removed all sensitive files."
echo "------------------------------"
echo "UPLOADING NEW SITE FILES"
echo "------------------------------"
gcloud storage cp --recursive ./out/* $BUCKET_URL --gzip-in-flight-all
echo "------------------------------"
echo "INVALIDATING GLOBAL CACHE"
echo "------------------------------"
echo "WARNING: This is an async operation that can take upwards of 10 minutes depending on how fast Google Cloud CDN invalidates its cache. It does take around 10 minutes on average."
gcloud compute url-maps invalidate-cdn-cache lb-aaronjy-www --path "/*" --async
echo "------------------------------"
echo "DONE!"
echo "------------------------------"