charts/.github/main.workflow
2019-05-15 22:00:20 -04:00

33 lines
699 B
HCL

workflow "Lint & Publish Helm chart" {
resolves = [
"Package Helm Chart(s)",
]
on = "push"
}
action "Package Helm Chart(s)" {
uses = "billimek/gh-actions/helm-gh-pages@master"
args = "[\"https://billimek.com/billimek-charts/\"]"
secrets = ["GITHUB_TOKEN"]
needs = ["Filter for master "]
}
workflow "Pull Request" {
on = "pull_request"
resolves = [
"Pull Request Linting",
]
}
action "Pull Request Linting" {
uses = "billimek/gh-actions/helm-gh-pages@master"
args = "\"https://billimek.com/billimek-charts/\""
secrets = ["GITHUB_TOKEN"]
}
action "Filter for master " {
uses = "actions/bin/filter@master"
args = "branch master"
secrets = ["GITHUB_TOKEN"]
}