Skip to content

Commit 6fc7877

Browse files
skip errors if branch tracking fails (#327)
1 parent bf5250a commit 6fc7877

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs-sched-rebuild.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
run: |
3131
# setup local branches that we'd like to build docs for
3232
# required for sphinx-multiversion to find these
33-
git branch --track --force main origin/main
34-
git branch --track --force stable origin/stable
33+
git branch --track main origin/main || true
34+
git branch --track stable origin/stable || true
3535
tox -e docs-multi
3636
- name: Delete unnecessary files
3737
run: |

0 commit comments

Comments
 (0)