Created
January 23, 2019 00:46
-
-
Save MarcusFelling/0f0b49001354206de6d2be7f6915b3f5 to your computer and use it in GitHub Desktop.
Audhari Poornimarao YAML example
This file contains hidden or 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
# Build app using Azure Pipelines | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript?view=vsts | |
pool: | |
vmImage: 'vs2017-win2016' | |
steps: | |
– script: echo hello world | |
– task: NodeTool@0 | |
inputs: | |
versionSpec: '8.x' | |
- task: CopyFiles@1 | |
displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)' | |
inputs: | |
SourceFolder: '$(build.sourcesdirectory)' | |
Contents: | | |
web.config | |
TargetFolder: '$(Build.ArtifactStagingDirectory)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment