diff options
author | Okke Formsma <okke@formsma.nl> | 2020-12-21 13:32:14 +0100 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-21 15:55:50 -0500 |
commit | f865779d5c3b45076c90a68cf4b5a6c6e84f2e97 (patch) | |
tree | 22cc38dc4124d47c5bb68ff47f26653bf310e078 /.github/workflows/build.yml | |
parent | 8fd9b619a7b7d01d51f41411117d5980a7647923 (diff) |
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
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1763ecf..ac5bded 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 |