File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 5
5
if [ " ${TRAVIS_SCALA_VERSION} " == " 2.11.7" ] && [ " ${TRAVIS_JDK_VERSION} " == " oraclejdk8" ];
6
6
then
7
7
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
+
8
14
echo " The current JDK version is ${TRAVIS_JDK_VERSION} "
9
15
echo " The current Scala version is ${TRAVIS_SCALA_VERSION} "
10
16
29
35
sbt version-bump-patch git-tag
30
36
31
37
echo " Pushing tag to GitHub."
32
- git config user.email " ci@outworkers.com"
33
- git config user.name " Travis CI"
34
38
35
39
git push --tags " https://${github_token} @${GH_REF} "
36
40
44
48
git commit -m " Automatically incrementing tag version."
45
49
46
50
echo " Printing available remotes"
47
- git remove -v
51
+ git remote -v
48
52
49
53
git push " https://${github_token} @${GH_REF} " develop
50
54
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ object Build extends Build {
67
67
68
68
val sharedSettings : Seq [Def .Setting [_]] = Seq (
69
69
organization := " com.websudos" ,
70
- version := " 0.2.5 " ,
70
+ version := " 0.2.6 " ,
71
71
scalaVersion := " 2.11.7" ,
72
72
crossScalaVersions := Seq (" 2.10.5" , " 2.11.7" ),
73
73
resolvers ++= Seq (
You can’t perform that action at this time.
0 commit comments