oguzhankircali
3/21/2020 - 8:46 PM

Azure Pipeline Copy Files from Repository to Storage

# Archive your static HTML project and save it with the build record.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
 
trigger:
- master
 
pool:
  vmImage: 'windows-latest'
 
steps:
 
- task: AzureFileCopy@2
  inputs:
    SourcePath: '$(Build.SourcesDirectory)'
    azureSubscription: 'Azure subscription 1 (dsdb74er-8uy7-4e1e-py87-sdfsdfsf)'
    Destination: 'AzureBlob'
    storage: 'mystorage'
    containerName: '$web'