charts/.github/main.workflow

13 lines
274 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 "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
}