Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EBI-Framework
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ebiwd
EBI-Framework
Commits
f9e79903
Commit
f9e79903
authored
7 years ago
by
Peter Walter
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/deploy-aws
+3
-4
3 additions, 4 deletions
bin/deploy-aws
with
3 additions
and
4 deletions
bin/deploy-aws
+
3
−
4
View file @
f9e79903
...
...
@@ -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
}
"
\
;
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment