forked from jeanlescure/react-deploy-to-s3-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrypoint.sh
executable file
·94 lines (79 loc) · 2.37 KB
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/sh
set -e
if [ -z "$AWS_S3_BUCKET" ]; then
echo "AWS_S3_BUCKET is not set. Quitting."
exit 1
fi
if [ -z "$AWS_ACCESS_KEY_ID" ]; then
echo "AWS_ACCESS_KEY_ID is not set. Quitting."
exit 1
fi
if [ -z "$AWS_SECRET_ACCESS_KEY" ]; then
echo "AWS_SECRET_ACCESS_KEY is not set. Quitting."
exit 1
fi
# Default to us-east-1 if AWS_REGION not set.
if [ -z "$AWS_REGION" ]; then
AWS_REGION="us-east-1"
fi
# Override default AWS endpoint if user sets AWS_S3_ENDPOINT.
if [ -n "$AWS_S3_ENDPOINT" ]; then
ENDPOINT_APPEND="--endpoint-url $AWS_S3_ENDPOINT"
fi
# Create a dedicated profile for this action to avoid conflicts
# with past/future actions.
aws configure --profile react-deploy-to-s3-action <<-EOF > /dev/null 2>&1
${AWS_ACCESS_KEY_ID}
${AWS_SECRET_ACCESS_KEY}
${AWS_REGION}
text
EOF
if [ -n "${DEST_DIR}" ]; then
target=s3://${AWS_S3_BUCKET}/${DEST_DIR}
else
target=s3://${AWS_S3_BUCKET}
fi
# The source folder
source="${SOURCE_DIR:-build}"
# Sync using our dedicated profile and suppress verbose messages.
# - Upload index first.
# - Then the other top level files.
# - Then the static files.
aws s3 sync ${source} ${target} \
--profile react-deploy-to-s3-action \
--metadata-directive REPLACE \
--cache-control max-age=86400 \
--exclude index.html --exclude 'static/*' \
--no-progress \
--delete \
${ENDPOINT_APPEND} $* \
&& aws s3 sync ${source}/static ${target}/static \
--profile react-deploy-to-s3-action \
--metadata-directive REPLACE \
--cache-control max-age=31536000 \
--no-progress \
${ENDPOINT_APPEND} $* \
&& aws s3 cp ${source}/index.html ${target} \
--profile react-deploy-to-s3-action \
--metadata-directive REPLACE \
--cache-control max-age=5 \
--no-progress \
${ENDPOINT_APPEND} $*
SUCCESS=$?
# Clear out credentials after we're done.
# We need to re-run `aws configure` with bogus input instead of
# deleting ~/.aws in case there are other credentials living there.
# https://forums.aws.amazon.com/thread.jspa?threadID=148833
aws configure --profile s3-sync-action <<-EOF > /dev/null 2>&1
null
null
null
text
EOF
if [ $SUCCESS -eq 0 ]
then
echo "Deploy successful."
else
echo "Failed to perform deploy!"
exit 1
fi