From 1e8c1905038379f0ade7ddfde79255379b4abae6 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 27 Dec 2023 15:23:36 -0600 Subject: [PATCH] [CI] Fix beachball publish --- .ado/publish.yml | 2 +- packages/community-cli-plugin/package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.ado/publish.yml b/.ado/publish.yml index 7da49ee5a6af55..d54a966c511242 100644 --- a/.ado/publish.yml +++ b/.ado/publish.yml @@ -176,4 +176,4 @@ extends: displayName: "Publish beachball packages to npmjs.org" inputs: script: | - npx beachball publish --scope '!packages/react-native' --branch origin/$(Build.SourceBranchName) -n NOAUTH -yes -m "applying package updates ***NO_CI***" --access public + npx beachball publish --scope '!packages/react-native' --branch origin/$(Build.SourceBranchName) -n $(npmAuthToken) -yes -m "applying package updates ***NO_CI***" --access public diff --git a/packages/community-cli-plugin/package.json b/packages/community-cli-plugin/package.json index 3f47a036390069..21b9e9428e9cd6 100644 --- a/packages/community-cli-plugin/package.json +++ b/packages/community-cli-plugin/package.json @@ -39,5 +39,8 @@ }, "engines": { "node": ">=18" + }, + "beachball": { + "shouldPublish": false } }