From 7f8068ff9ca4e0c0d0f2206a763fec328cf68d3b Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Thu, 5 Dec 2024 14:50:49 -0800 Subject: [PATCH] ci(0.76): add `--verbose` flag to `nx release` --- .ado/templates/npm-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ado/templates/npm-publish.yml b/.ado/templates/npm-publish.yml index f409bf2e4e6d5e..6af25cf1529a9b 100644 --- a/.ado/templates/npm-publish.yml +++ b/.ado/templates/npm-publish.yml @@ -12,12 +12,12 @@ steps: displayName: Verify release config - script: | - yarn nx release --dry-run + yarn nx release --dry-run --verbose displayName: Version and publish packages (dry run) condition: and(succeeded(), ne(variables['publish_react_native_macos'], '1')) - script: | - yarn nx release --yes + yarn nx release --yes --verbose env: GITHUB_TOKEN: $(githubAuthToken) NODE_AUTH_TOKEN: $(npmAuthToken)