Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ extends:
-OutFile bin/index.url

- task: AzureFileCopy@6
displayName: Upload index to Azure Stroage
displayName: Upload index to Azure Storage
inputs:
azureSubscription: SourceDotNet-Deployment-ARM
SourcePath: "bin/index/index/*"
Expand Down Expand Up @@ -204,7 +204,7 @@ extends:

- task: AzureCLI@2
displayName: Swap Staging Slot into Production
condition: eq(variables['isOfficialBuild'], 'True')
condition: and(succeeded(), eq(variables['isOfficialBuild'], 'True'))
inputs:
azureSubscription: SourceDotNet-Deployment-ARM
scriptLocation: inlineScript
Expand All @@ -218,7 +218,7 @@ extends:

- task: AzureCLI@2
displayName: Cleanup Old Storage Containers
condition: eq(variables['isOfficialBuild'], 'True')
condition: and(succeeded(), eq(variables['isOfficialBuild'], 'True'))
inputs:
azureSubscription: SourceDotNet-Deployment-ARM
scriptLocation: inlineScript
Expand Down
Loading