Created
September 28, 2021 11:24
-
-
Save MahdiKarimipour/c3ab2469a12cce0c1aaee6dd56792547 to your computer and use it in GitHub Desktop.
Copy Helm Charts from CI Pipeline to CD
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
- 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