From 6689ac7697a5aaaf10e7091c8299164dbad9473d Mon Sep 17 00:00:00 2001 From: seth Date: Thu, 14 Dec 2023 06:12:23 -0500 Subject: [PATCH] push: don't report failure on error (#16) --- src/stages/push.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stages/push.ts b/src/stages/push.ts index 0849ca8..f13e1fd 100644 --- a/src/stages/push.ts +++ b/src/stages/push.ts @@ -32,7 +32,8 @@ export const push = async () => { } } } catch (e) { - core.setFailed(`Action failed with error: ${e}`); + core.warning(`Action encountered error: ${e}`); + core.info("Not considering errors during push a failure."); } core.endGroup();