Skip to content

Commit

Permalink
skip errors if branch tracking fails (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverholworthy authored May 23, 2023
1 parent bf5250a commit 6fc7877
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs-sched-rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
run: |
# setup local branches that we'd like to build docs for
# required for sphinx-multiversion to find these
git branch --track --force main origin/main
git branch --track --force stable origin/stable
git branch --track main origin/main || true
git branch --track stable origin/stable || true
tox -e docs-multi
- name: Delete unnecessary files
run: |
Expand Down

0 comments on commit 6fc7877

Please sign in to comment.