GeneIT/geneit_app/upload_bucket.sh

17 lines
395 B
Bash
Raw Normal View History

2023-08-24 18:07:40 +02:00
if [[ -z "${AWS_ACCESS_KEY_ID}" ]]; then
echo Missing AWS access key. Skip deployment.
exit 0
fi
if [[ -z "${AWS_SECRET_ACCESS_KEY}" ]]; then
echo Missing AWS secret key. Skip deployment.
exit 0
fi
if [ ! "$DRONE_COMMIT_BRANCH" == "master" ]; then
2023-08-24 18:07:40 +02:00
echo Not on master branch. Skip deployment.
exit 0
fi
2023-12-12 19:45:54 +01:00
cd dist && aws --endpoint-url https://s3.communiquons.org s3 sync . s3://geneit-app