charts/.github/main.workflow

11 lines
244 B
Plaintext
Raw Normal View History

2019-05-15 14:31:33 +00:00
workflow "Publish Helm chart" {
on = "push"
resolves = ["Helm gh-pages"]
}
2019-05-15 14:56:56 +00:00
2019-05-15 14:31:33 +00:00
action "Helm gh-pages" {
2019-05-15 14:56:56 +00:00
uses = "billimek/gh-actions/helm-gh-pages@master"
args = ["*", "https://billimek.com/billimek-charts/"]
2019-05-15 14:31:33 +00:00
secrets = ["GITHUB_TOKEN"]
}