charts/.github/main.workflow

13 lines
279 B
Plaintext
Raw Normal View History

2019-05-15 14:31:33 +00:00
workflow "Publish Helm chart" {
resolves = [
"Package Helm Chart(s)",
]
2019-05-15 20:27:10 +00:00
on = "check_run"
2019-05-15 14:31:33 +00:00
}
2019-05-15 14:56:56 +00:00
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/\"]"
2019-05-15 14:31:33 +00:00
}