Skip to content

Commit

Permalink
SimplyEmail 1.4.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
killswitch-GUI committed Dec 21, 2017
1 parent 411e950 commit 20b26d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ IMAGE=simplyemail
# version
VERSION="$(cat VERSION)"

docker build --build-arg simplyemailversion="$VERSION" -t $USERNAME/$IMAGE:latest .
docker build -t $USERNAME/$IMAGE:latest .
13 changes: 8 additions & 5 deletions .release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,19 @@ VERSION=`cat VERSION`
echo "version: $VERSION"

# TAF, PULL, MERGE DEV
git checkout "dev"
git checkout -b "Version-$VERSION"
git add --all
git commit -m "SimplyEmail $VERSION Release"
git tag -a "$VERSION" -m "SimplyEmail $VERSION Release"
git push origin "dev"
git push origin "dev" --tags
git push origin "Version-$VERSION"
git push origin "Version-$VERSION" --tags
git checkout master
git merge "dev"
git merge "Version-$VERSION"
git push
hub release create $VERSION -m "SimplyEmail $VERSION Release"
hub release create Version-$VERSION -m "SimplyEmail $VERSION Release"
# DEL BRANCH
git branch -d "dev"
git branch -D "dev"

# ALERT VERSION
echo "Building Version: $VERSION"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.4
1.4.5

0 comments on commit 20b26d9

Please sign in to comment.