From 5851073a847f75a49b88d0b8b8b3ed2be75e14ef Mon Sep 17 00:00:00 2001 From: noahdarveau-MSFT <109628470+noahdarveau-MSFT@users.noreply.github.com> Date: Thu, 26 Sep 2024 05:59:09 -0700 Subject: [PATCH] noahdarveau/pipelinefix (#2527) * renamed prepBetaRelease to cjs --- tools/yaml-templates/build-test-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/yaml-templates/build-test-publish.yml b/tools/yaml-templates/build-test-publish.yml index 88a90151f9..ea6c0469cc 100644 --- a/tools/yaml-templates/build-test-publish.yml +++ b/tools/yaml-templates/build-test-publish.yml @@ -24,10 +24,10 @@ steps: script: 'node enforceBeachball.js' - task: CmdLine@2 - displayName: 'node prepBetaRelease.js' + displayName: 'node prepBetaRelease.cjs' condition: and( eq(variables['Build.SourceBranch'], 'refs/heads/main'), in(variables['Agent.JobStatus'], 'Succeeded', 'SucceededWithIssues'), ne(variables['Build.Reason'], 'PullRequest') ) inputs: - script: 'node prepBetaRelease.js' + script: 'node prepBetaRelease.cjs' workingDirectory: '$(System.DefaultWorkingDirectory)\packages\teams-js' - task: CmdLine@2