From 47807acff2d0ddb9469f1b6f5b493b8efe7f2e46 Mon Sep 17 00:00:00 2001 From: Vincent Lee Date: Sat, 16 Dec 2023 12:08:59 -0800 Subject: [PATCH] Set continue-on-error --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c85eaaf..5d37798 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,7 @@ jobs: submodules: recursive fetch-depth: '0' - name: Create all local branches # So that the git bundle contains all branch pointers + continue-on-error: true run: | cd Botania && (for b in `git branch -r | grep -v -- '->'`; do git branch --track ${b##origin/} $b; done) - name: Install dependencies