Created
February 16, 2023 13:20
-
-
Save kunalworldwide/cd51e172c9b79f976dfd926e6a5a9415 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The pipeline copies files from workspace publish branch and publishes artifact | |
# @author Kunal Das | |
# @version 1.0 | |
# @since 10-11-2022 | |
name: | |
-synapse-CI-low | |
trigger: | |
- workspace_publish | |
pool: | |
vmImage: ubuntu-22.04 | |
steps: | |
- task: CopyFiles@2 | |
displayName: 'Copy Files to Build Pipeline directory' | |
inputs: | |
SourceFolder: 'synapse-dev' | |
TargetFolder: '$(Build.ArtifactStagingDirectory)/ARM' | |
- task: PublishPipelineArtifact@1 | |
displayName: 'Publish Pipeline Artifact' | |
inputs: | |
targetPath: '$(Build.ArtifactStagingDirectory)' | |
artifact: drop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment