From 271a991e76fce1d7ff900057d466e300cf9236e4 Mon Sep 17 00:00:00 2001 From: Ian Clanton-Thuon Date: Thu, 1 Jun 2023 18:29:01 -0700 Subject: [PATCH] Revert pipelines. --- common/config/azure-pipelines/npm-publish.yaml | 8 ++++---- common/config/azure-pipelines/templates/build.yaml | 4 ++-- common/config/azure-pipelines/templates/publish.yaml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/common/config/azure-pipelines/npm-publish.yaml b/common/config/azure-pipelines/npm-publish.yaml index 5dcd769fac6..c5e60b86b11 100644 --- a/common/config/azure-pipelines/npm-publish.yaml +++ b/common/config/azure-pipelines/npm-publish.yaml @@ -11,10 +11,10 @@ steps: - checkout: self persistCredentials: true - template: templates/build.yaml - # - template: templates/bump-versions.yaml - # parameters: - # VersionPolicyName: noRush - # BranchName: $(SourceBranch) + - template: templates/bump-versions.yaml + parameters: + VersionPolicyName: noRush + BranchName: $(SourceBranch) - template: templates/publish.yaml parameters: VersionPolicyName: noRush diff --git a/common/config/azure-pipelines/templates/build.yaml b/common/config/azure-pipelines/templates/build.yaml index faf314a423b..e5bf5e395bc 100644 --- a/common/config/azure-pipelines/templates/build.yaml +++ b/common/config/azure-pipelines/templates/build.yaml @@ -8,8 +8,8 @@ steps: displayName: 'git config email' - script: 'git config --local user.name Rushbot' displayName: 'git config name' - # - script: 'node common/scripts/install-run-rush.js change --verify' - # displayName: 'Verify Change Logs' + - script: 'node common/scripts/install-run-rush.js change --verify' + displayName: 'Verify Change Logs' - script: 'node common/scripts/install-run-rush.js install' displayName: 'Rush Install' - script: 'node common/scripts/install-run-rush.js retest --verbose --production' diff --git a/common/config/azure-pipelines/templates/publish.yaml b/common/config/azure-pipelines/templates/publish.yaml index 3ac528ecf89..281d7edae9b 100644 --- a/common/config/azure-pipelines/templates/publish.yaml +++ b/common/config/azure-pipelines/templates/publish.yaml @@ -6,7 +6,7 @@ parameters: default: $(Build.SourceBranchName) steps: - - script: 'node common/scripts/install-run-rush.js publish --apply --publish --include-all --target-branch ${{ parameters.BranchName }} --add-commit-details --set-access-level public --tag dev' + - script: 'node common/scripts/install-run-rush.js publish --apply --publish --include-all --target-branch ${{ parameters.BranchName }} --add-commit-details --set-access-level public' displayName: 'Rush Publish (Policy: ${{ parameters.VersionPolicyName }})' env: NPM_AUTH_TOKEN: $(npmToken)