Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MahdiKarimipour/c3ab2469a12cce0c1aaee6dd56792547 to your computer and use it in GitHub Desktop.
Save MahdiKarimipour/c3ab2469a12cce0c1aaee6dd56792547 to your computer and use it in GitHub Desktop.
Copy Helm Charts from CI Pipeline to CD
- task: CopyFiles@2
inputs:
SourceFolder: 'Infrastructure'
Contents: '**'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: '$(projectName)'
displayName: "Upload Artifacts"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment