Skip to content

Commit 5e9a176

Browse files
πŸ’š Rename master to stable in misc build scripts
1 parent 708913e commit 5e9a176

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

β€Ž.scripts/deploy-helm-branch.shβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else
1313
branchname=$TRAVIS_BRANCH;
1414
fi
1515

16-
if [ "$TRAVIS_BRANCH" != "master" ] || [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
16+
if [ "$TRAVIS_BRANCH" != "stable" ] || [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
1717
branchname=${branchname//$feature\//}
1818
branchname=${branchname#?}
1919
releasename="$git_repo-${branchname//[^a-zA-Z0-9]/-}";

β€Žnx.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
}
3232
},
3333
"affected": {
34-
"defaultBase": "master"
34+
"defaultBase": "stable"
3535
}
3636
}

β€Žscripts/version_bump.shβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ if [[ $TRAVIS_COMMIT_MESSAGE =~ "Bumping version to" ]]; then
77
exit 0;
88
fi
99

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"
1212
exit 0;
1313
fi
1414

@@ -26,5 +26,5 @@ git remote set-url origin [email protected]:kirbydesign/designsystem.git
2626
echo "Bumping version and pushing tags"
2727
git checkout -- package.json
2828
git --no-pager diff
29-
git checkout master
29+
git checkout stable
3030
npm version patch -m ":bookmark: Bumping version to %s"

0 commit comments

Comments
Β (0)