From 1bffa31a4f8ef94bf0708b981d1b8bc2fb63b1b7 Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Wed, 5 Nov 2025 14:33:29 -0800 Subject: [PATCH] fix(ci): skip git push during release process This modifies the lerna publish command to skip pushing to the remote repository during release. Co-authored-by: llm-git Ticket: BTC-2724 --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 262ea07..f1efad6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -70,6 +70,6 @@ jobs: run: npm --workspaces test - name: Release - run: npx lerna publish --yes --no-verify-access + run: npx lerna publish --yes --no-verify-access --no-push env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}