Skip to content
Snippets Groups Projects
Commit f9e79903 authored by Peter Walter's avatar Peter Walter
Browse files

detect branch from tag name, move max-age control to file

parent 822e3e9a
No related branches found
No related tags found
No related merge requests found
......@@ -7,17 +7,16 @@ set -u;
# get current branch from git info
PROJECT=${CI_PROJECT_NAME};
BRANCH=${CI_COMMIT_REF_NAME};
BRANCH=$(echo "${CI_COMMIT_REF_NAME}" | cut -d'.' -f1-2); # first two parts, if tag name
# set project base
DEPLOY_PATH="web_guidelines/${PROJECT}/${BRANCH}";
if [ "${1:-''}" = "prod" ]; then
S3_BUCKET=${S3_BUCKET_PROD};
MAX_AGE=60; # 1min
MAX_AGE=$(cat .max-age); # define in .max-age
else
S3_BUCKET=${S3_BUCKET_DEV};
MAX_AGE=60; # 1min
fi;
# push to AWS (exclude bin and .git)
......@@ -25,5 +24,5 @@ aws s3 sync . s3://${S3_BUCKET}/${DEPLOY_PATH} \
--exclude ".git*" \
--exclude "bin/*" \
--delete \
--cache-control "max-age=${MAX_AGE}" \
--cache-control "max-age=${MAX_AGE:-60}" \
;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment