File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,16 @@ jobs:
2222 git config --global user.name 'Wires bot'
2323 git config --global user.email '[email protected] ' 2424 CHANGES=0
25- if [ -z "$(git branch | grep latest)" ]; then
26- if [ -n "$(git branch -r | grep latest)" ]; then
27- git checkout latest
25+ if [ -z "$(git branch | grep latest-infix )" ]; then
26+ if [ -n "$(git branch -r | grep latest-infix )" ]; then
27+ git checkout latest-infix
2828 else
29- git checkout -b latest
29+ git checkout -b latest-infix
3030 fi
3131 else
32- if [ -n "$(git branch -r | grep latest)" ]; then
33- git reset --hard origin/latest
32+ git checkout latest-infix
33+ if [ -n "$(git branch -r | grep latest-infix)" ]; then
34+ git reset --hard origin/latest-infix
3435 fi
3536 fi
3637 if [[ -n "$(git diff --exit-code origin/main)" ]]; then
4748
4849 if [[ -n "$(git diff --exit-code infix)" ]]; then
4950 git add infix
50- git commit infix -m "Step up infix "
51+ git commit infix -m "Bump Infix "
5152 CHANGES=1
5253 fi
5354
5960 fi
6061
6162 if [ $CHANGES -eq 1 ]; then
62- git push origin latest
63+ git push origin latest-infix
6364 fi
You can’t perform that action at this time.
0 commit comments