From f865779d5c3b45076c90a68cf4b5a6c6e84f2e97 Mon Sep 17 00:00:00 2001 From: Okke Formsma Date: Mon, 21 Dec 2020 13:32:14 +0100 Subject: [PATCH] ci(build): ignore failing upload-artifacts step Build steps are often failing with "ECONNRESET" errors due to rate-limiting by github. We usually don't need/care about the artifacts, so don't have to fail the build when the upload fails. related to #502 and #actions/upload-artifact/issues/116 --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1763ecfa..ac5bded1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -112,3 +112,4 @@ jobs: path: | build/zephyr/zmk.hex build/zephyr/zmk.uf2 + continue-on-error: true