diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000..114e4ea8 --- /dev/null +++ b/.github/main.workflow @@ -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"] +} +