From 570aa3cdac916fb5f104742cda0690818770a36d Mon Sep 17 00:00:00 2001 From: Brennan Ashton Date: Tue, 22 Dec 2020 23:06:12 -0800 Subject: [PATCH] CI: Allow builds to pass even if final artifact upload fails We are seeing higher cases of artifact upload failures in github. Other projects are also seeing this as has been reported at https://github.com/actions/upload-artifact/issues/116 There is a fix that was just merged in the base library: https://github.com/actions/toolkit/pull/675 So Hopefully we can revert this before too long. Signed-off-by: Brennan Ashton --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce5ce76a7f..84004380a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -168,6 +168,7 @@ jobs: with: name: linux-builds path: buildartifacts/ + continue-on-error: true macOS: runs-on: macos-10.15 @@ -207,3 +208,4 @@ jobs: with: name: macos-builds path: buildartifacts/ + continue-on-error: true