From 27f0bef965dc28a2b3fcb5337f4816473fe99695 Mon Sep 17 00:00:00 2001 From: Sarangan Rajamanickam Date: Wed, 18 Dec 2024 00:31:50 +0000 Subject: [PATCH] [@typespec/spec-dashboard] Add Account Name to the script (#5398) This PR adds the missing account name to the script. Please review and approve the PR. Thanks --- eng/tsp-core/pipelines/dashboard-deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eng/tsp-core/pipelines/dashboard-deploy.yml b/eng/tsp-core/pipelines/dashboard-deploy.yml index db1cdbf82c..f915409210 100644 --- a/eng/tsp-core/pipelines/dashboard-deploy.yml +++ b/eng/tsp-core/pipelines/dashboard-deploy.yml @@ -5,6 +5,8 @@ trigger: # For patch releases - release/* +pr: none + extends: template: /eng/common/pipelines/templates/1es-redirect.yml parameters: @@ -38,5 +40,5 @@ extends: scriptLocation: "inlineScript" inlineScript: | echo "Uploading files to Azure Blob Storage..." - az storage blob upload-batch --source packages/spec-dashboard/dist/ --destination '$web' --overwrite + az storage blob upload-batch --account-name specdashboard --source packages/spec-dashboard/dist/ --destination '$web' --overwrite displayName: "Upload files to Azure Blob Storage"