mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-16 01:55:15 +01:00
12 lines
263 B
Bash
Executable File
12 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
|
|
aws s3 sync ./public s3://beta.matthiaskretschmann.com --delete --acl public-read
|
|
|
|
echo "---------------------------------------------"
|
|
echo " ✓ done deployment "
|
|
echo "---------------------------------------------"
|
|
|
|
exit;
|