From 337d5476987138b525218df01ab60b266c4c5b93 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:22:11 +0200 Subject: [PATCH] Do not refer to `$npmTag` which does not exist (#16075) `--access` is not required either since we now specify that in the package.json file --- build/azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index e67a3c08f2..314301450c 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -768,7 +768,7 @@ stages: # Find the first .tgz file in the current directory and publish it files=( ./*.tgz ) - npm publish --access public "${files[0]}" + npm publish "${files[0]}" displayName: Push to npm (MyGet) workingDirectory: $(Pipeline.Workspace)/npm @@ -822,7 +822,7 @@ stages: # Find the first .tgz file in the current directory and publish it files=( ./*.tgz ) - npm publish --tag $npmTag --access public "${files[0]}" + npm publish "${files[0]}" displayName: Push to npm workingDirectory: $(Pipeline.Workspace)/npm