We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f60398 commit 383659aCopy full SHA for 383659a
azure-pipelines-templates/copy-sdkconfig.yml
@@ -8,7 +8,11 @@ parameters:
8
9
steps:
10
- task: CopyFiles@2
11
- condition: succeeded()
+ condition: >-
12
+ or(
13
+ succeeded(),
14
+ failed()
15
+ )
16
displayName: Copying SDKCONFIG
17
inputs:
18
sourceFolder: "${{ parameters.repoDirectory }}"
azure-pipelines-templates/publish-sdkconfig.yml
@@ -3,8 +3,12 @@
3
4
5
- task: PublishPipelineArtifact@1
6
7
displayName: Publish SDKCONFIG artifact
targetPath: '$(Build.ArtifactStagingDirectory)\$(TargetPublishName)_sdkconfig'
artifactName: $(TargetPublishName)_sdkconfig
0 commit comments