charts/.github/main.workflow

30 lines
643 B
Plaintext
Raw Normal View History

2019-05-15 20:28:32 +00:00
workflow "Lint & Publish Helm chart" {
resolves = [
"Package Helm Chart(s)",
]
2019-05-15 20:28:32 +00:00
on = "push"
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-16 00:07:40 +00:00
args = "[\"https://billimek.com/billimek-charts/\"]"
2019-05-16 00:08:56 +00:00
secrets = ["GITHUB_TOKEN"]
2019-05-16 00:16:09 +00:00
env = {
SKIP_LINTING = "true"
}
2019-05-16 00:07:40 +00:00
}
workflow "Pull Request" {
on = "pull_request"
resolves = ["billimek/gh-actions/helm-gh-pages@master"]
}
action "billimek/gh-actions/helm-gh-pages@master" {
uses = "billimek/gh-actions/helm-gh-pages@master"
args = "\"https://billimek.com/billimek-charts/\""
2019-05-16 00:08:56 +00:00
secrets = ["GITHUB_TOKEN"]
2019-05-16 00:16:09 +00:00
env = {
PR = "true"
}
2019-05-15 14:31:33 +00:00
}