There was an error while loading. Please reload this page.
1 parent c86fb4a commit d831367Copy full SHA for d831367
1 file changed
Makefile
@@ -123,15 +123,9 @@ endif
123
@echo "Github Actions will detect the new tag and release the new version."
124
125
126
-
127
-update_beta:
128
- git checkout beta
129
- git rebase dev
130
- git push
131
- git checkout dev
132
133
-update_release:
134
- git checkout main
+sync_branch:
+ [ ! -z "$(BRANCH)" ] || { echo "no branch main/dev"; exit 1; }
+ git checkout $(BRANCH)
135
git rebase dev
136
git push
137
git checkout dev
0 commit comments