Skip to content

Commit

Permalink
Publish charts with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Jan 24, 2019
1 parent 05664fa commit 0f2697d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
workflow "Publish Helm charts" {
on = "push"
resolves = ["helm-push"]
}

action "helm-lint" {
uses = "stefanprodan/gh-actions/helm@master"
args = ["lint charts/*"]
}

action "helm-push" {
needs = ["helm-lint"]
uses = "stefanprodan/gh-actions/helm-gh-pages@master"
args = ["charts/*","https://flagger.app"]
secrets = ["GITHUB_TOKEN"]
}

0 comments on commit 0f2697d

Please sign in to comment.