diff options
| -rw-r--r-- | .ci/azure-pipelines.yml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 6417d500d..8ceee3675 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -28,7 +28,13 @@ jobs: - checkout: self clean: true submodules: true - persistCredentials: false + persistCredentials: true + + - task: CmdLine@2 + displayName: "Update submodules" + inputs: + script: 'git submodule update --recursive --remote' + workingDirectory: '$(Build.SourcesDirectory)' - task: DotNetCoreCLI@2 displayName: Publish @@ -87,7 +93,13 @@ jobs: - checkout: self clean: true submodules: true - persistCredentials: false + persistCredentials: true + + - task: CmdLine@2 + displayName: "Update submodules" + inputs: + script: 'git submodule update --recursive --remote' + workingDirectory: '$(Build.SourcesDirectory)' - task: CmdLine@2 displayName: Clone the UX repository |
