Skip to content

Commit e76c92a

Browse files
committed
Merge pull request #13 from outworkers/release/version_fix
Merge pull request #12 from outworkers/release/deploy_Fix
2 parents 9b17e36 + 721ca19 commit e76c92a

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

build/publish_develop.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ then
55
if [ "${TRAVIS_SCALA_VERSION}" == "2.11.7" ] && [ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ];
66
then
77

8+
echo "Setting git user email to ci@outworkers.com"
9+
git config user.email "ci@outworkers.com"
10+
11+
echo "Setting git user name to Travis CI"
12+
git config user.name "Travis CI"
13+
814
echo "The current JDK version is ${TRAVIS_JDK_VERSION}"
915
echo "The current Scala version is ${TRAVIS_SCALA_VERSION}"
1016

@@ -29,8 +35,6 @@ then
2935
sbt version-bump-patch git-tag
3036

3137
echo "Pushing tag to GitHub."
32-
git config user.email "ci@outworkers.com"
33-
git config user.name "Travis CI"
3438

3539
git push --tags "https://${github_token}@${GH_REF}"
3640

@@ -44,7 +48,7 @@ then
4448
git commit -m "Automatically incrementing tag version."
4549

4650
echo "Printing available remotes"
47-
git remove -v
51+
git remote -v
4852

4953
git push "https://${github_token}@${GH_REF}" develop
5054

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ object Build extends Build {
6767

6868
val sharedSettings: Seq[Def.Setting[_]] = Seq(
6969
organization := "com.websudos",
70-
version := "0.2.5",
70+
version := "0.2.6",
7171
scalaVersion := "2.11.7",
7272
crossScalaVersions := Seq("2.10.5", "2.11.7"),
7373
resolvers ++= Seq(

0 commit comments

Comments
 (0)