You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
379 B
11 lines
379 B
# Steps for publishing project cache |
|
|
|
steps: |
|
- task: PublishBuildArtifacts@1 |
|
displayName: 'Cache: Upload install folder' |
|
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) |
|
inputs: |
|
pathToPublish: '$(ESY__CACHE_INSTALL_PATH)' |
|
artifactName: 'cache-$(Agent.OS)-install' |
|
parallel: true |
|
parallelCount: 8
|
|
|