charts/.github/main.workflow

19 lines
421 B
Plaintext
Raw Normal View History

2019-05-15 14:31:33 +00:00
workflow "Publish Helm chart" {
on = "push"
resolves = [
"Package Helm Chart(s)",
]
2019-05-15 14:31:33 +00:00
}
2019-05-15 14:56:56 +00:00
action "Chart.yaml changed?" {
uses = "docker://cdssnc/touched-github-action"
args = "\"{**Chart.yaml}\""
}
action "Package Helm Chart(s)" {
2019-05-15 14:56:56 +00:00
uses = "billimek/gh-actions/helm-gh-pages@master"
2019-05-15 14:31:33 +00:00
secrets = ["GITHUB_TOKEN"]
args = "[\".\",\"https://billimek.com/billimek-charts/\"]"
needs = ["Chart.yaml changed?"]
2019-05-15 14:31:33 +00:00
}