Skip to content

Commit bba45e0

Browse files
authored
Merge branch 'main' into IDF5_4
2 parents e4261b4 + 383659a commit bba45e0

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

azure-pipelines-templates/copy-sdkconfig.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ parameters:
88

99
steps:
1010
- task: CopyFiles@2
11+
condition: >-
12+
or(
13+
succeeded(),
14+
failed()
15+
)
1116
displayName: Copying SDKCONFIG
1217
inputs:
1318
sourceFolder: "${{ parameters.repoDirectory }}"

azure-pipelines-templates/publish-sdkconfig.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
steps:
55
- task: PublishPipelineArtifact@1
66
displayName: Publish SDKCONFIG artifact
7+
condition: >-
8+
or(
9+
succeeded(),
10+
failed()
11+
)
712
inputs:
813
targetPath: '$(Build.ArtifactStagingDirectory)\$(TargetPublishName)_sdkconfig'
914
artifactName: $(TargetPublishName)_sdkconfig

0 commit comments

Comments
 (0)