Skip to content

Commit 3528648

Browse files
committed
more debug
1 parent 2cdaedb commit 3528648

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/0-merge-beta.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ jobs:
5353
MERGE_BRANCH="merge-${DATE}"
5454
5555
git fetch origin
56-
if ! git branch --remotes | grep -q "origin/${MERGE_BRANCH}"; then
57-
git checkout "origin/${MERGE_BRANCH}"
58-
else
56+
git branch --remotes
57+
if git branch --remotes | grep -q "origin/${MERGE_BRANCH}"; then
5958
git checkout "${TARGET_BRANCH}"
59+
else
60+
git checkout "origin/${MERGE_BRANCH}"
6061
fi
6162
6263
git checkout -b "${MERGE_BRANCH}"

0 commit comments

Comments
 (0)