Use Amazon SES on travis
This commit is contained in:
34
res/aws_release.sh
Executable file
34
res/aws_release.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/sh
|
||||
|
||||
# go to root
|
||||
cd `dirname $0`
|
||||
cd ..
|
||||
|
||||
if [ "$1" != "prod" ] && [ "$1" != "test" ] ; then
|
||||
echo 'Usage: ./res/aws_release prod|test'
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# switch branch
|
||||
git checkout master
|
||||
git branch -D release/$1
|
||||
git checkout -b release/$1
|
||||
git merge master --no-edit
|
||||
|
||||
# install only production dependencies
|
||||
rm -rf node_modules/
|
||||
npm install --production
|
||||
|
||||
# delete .gitignore files before adding to git for aws deployment
|
||||
find node_modules/ -name ".gitignore" -exec rm -rf {} \;
|
||||
|
||||
# Add runtime dependencies to git
|
||||
sed -i "" '/node_modules/d' .gitignore
|
||||
git add .gitignore node_modules/
|
||||
git commit -m "Update release"
|
||||
|
||||
# push to aws
|
||||
eb deploy keyserver-$1
|
||||
|
||||
# switch back to master branch
|
||||
git checkout master
|
||||
Reference in New Issue
Block a user