mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-22 13:53:56 +00:00
18 lines
352 B
HCL
18 lines
352 B
HCL
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"]
|
|
}
|
|
|