From f6ed3139d521a4eb25649276bc394cd4864310fc Mon Sep 17 00:00:00 2001 From: safaiyeh Date: Sat, 27 Dec 2025 16:01:15 -0800 Subject: [PATCH] fix(ci): properly fail release job when npm publish fails Remove || true from semantic-release command so that publishing failures are properly reported instead of being silently ignored. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f3a5f5a4..66ee0c5c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,7 @@ jobs: - rn/yarn_install - run: name: Publish to NPM - command: yarn semantic-release || true + command: yarn semantic-release workflows: ci: