Skip to content

Commit 20b26d9

Browse files
SimplyEmail 1.4.5 Release
1 parent 411e950 commit 20b26d9

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ IMAGE=simplyemail
99
# version
1010
VERSION="$(cat VERSION)"
1111

12-
docker build --build-arg simplyemailversion="$VERSION" -t $USERNAME/$IMAGE:latest .
12+
docker build -t $USERNAME/$IMAGE:latest .

.release.sh

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,19 @@ VERSION=`cat VERSION`
1515
echo "version: $VERSION"
1616

1717
# TAF, PULL, MERGE DEV
18-
git checkout "dev"
18+
git checkout -b "Version-$VERSION"
1919
git add --all
2020
git commit -m "SimplyEmail $VERSION Release"
2121
git tag -a "$VERSION" -m "SimplyEmail $VERSION Release"
22-
git push origin "dev"
23-
git push origin "dev" --tags
22+
git push origin "Version-$VERSION"
23+
git push origin "Version-$VERSION" --tags
2424
git checkout master
25-
git merge "dev"
25+
git merge "Version-$VERSION"
2626
git push
27-
hub release create $VERSION -m "SimplyEmail $VERSION Release"
27+
hub release create Version-$VERSION -m "SimplyEmail $VERSION Release"
28+
# DEL BRANCH
29+
git branch -d "dev"
30+
git branch -D "dev"
2831

2932
# ALERT VERSION
3033
echo "Building Version: $VERSION"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.4
1+
1.4.5

0 commit comments

Comments
 (0)