From 0f2697df23860c31108c3c3560dbf8828fdcc0a1 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Thu, 24 Jan 2019 12:38:45 +0200 Subject: [PATCH] Publish charts with GitHub Actions --- .github/main.workflow | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/main.workflow 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"] +} +