Created
June 25, 2019 23:06
-
-
Save juliuscanute/a380788fc404e98d0d39808fcdd7d643 to your computer and use it in GitHub Desktop.
Helm Package
This file contains 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: HelmDeploy@0 | |
displayName: Helm package | |
inputs: | |
command: package | |
chartPath: $(chartPath) | |
destination: $(Build.ArtifactStagingDirectory) | |
version: $(Build.BuildNumber) | |
updatedependency: true | |
- task: PublishBuildArtifacts@1 | |
inputs: | |
PathtoPublish: '$(Build.ArtifactStagingDirectory)' | |
ArtifactName: 'charts' | |
publishLocation: 'Container' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment