Step 9 - Copy Files to APIM folder - Build
  • 18 Nov 2019
  • 1 Minute to read
  • Contributors
  • Comment
  • Dark
    Light
  • PDF

Step 9 - Copy Files to APIM folder - Build

  • Comment
  • Dark
    Light
  • PDF

Article Summary

In this task we will copy the files from the project containing configuration for APIM to the artifact staging directory. This will allow us to package it up to deploy across enviromments.

The picture of the configuration for this task is below:

image.png

YAML

The yaml for this task is below:

steps:
- task: CopyFiles@2
  displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)\APIM'
  inputs:
    SourceFolder: '$(System.DefaultWorkingDirectory)\APIM'
    TargetFolder: '$(Build.ArtifactStagingDirectory)\APIM'


Was this article helpful?