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