File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
branchname=$TRAVIS_BRANCH ;
14
14
fi
15
15
16
- if [ " $TRAVIS_BRANCH " != " master " ] || [ " $TRAVIS_PULL_REQUEST " != " false" ]; then
16
+ if [ " $TRAVIS_BRANCH " != " stable " ] || [ " $TRAVIS_PULL_REQUEST " != " false" ]; then
17
17
branchname=${branchname// $feature \/ / }
18
18
branchname=${branchname# ?}
19
19
releasename=" $git_repo -${branchname// [^a-zA-Z0-9]/ -} " ;
Original file line number Diff line number Diff line change 31
31
}
32
32
},
33
33
"affected" : {
34
- "defaultBase" : " master "
34
+ "defaultBase" : " stable "
35
35
}
36
36
}
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ if [[ $TRAVIS_COMMIT_MESSAGE =~ "Bumping version to" ]]; then
7
7
exit 0;
8
8
fi
9
9
10
- if [ " $TRAVIS_BRANCH " != " master " ] || [ " $TRAVIS_PULL_REQUEST " != " false" ]; then
11
- echo " Not master branch - not bumping version"
10
+ if [ " $TRAVIS_BRANCH " != " stable " ] || [ " $TRAVIS_PULL_REQUEST " != " false" ]; then
11
+ echo " Not stable branch - not bumping version"
12
12
exit 0;
13
13
fi
14
14
@@ -26,5 +26,5 @@ git remote set-url origin
[email protected] :kirbydesign/designsystem.git
26
26
echo " Bumping version and pushing tags"
27
27
git checkout -- package.json
28
28
git --no-pager diff
29
- git checkout master
29
+ git checkout stable
30
30
npm version patch -m " :bookmark: Bumping version to %s"
You canβt perform that action at this time.
0 commit comments