mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
19 lines
421 B
HCL
19 lines
421 B
HCL
workflow "Publish Helm chart" {
|
|
on = "push"
|
|
resolves = [
|
|
"Package Helm Chart(s)",
|
|
]
|
|
}
|
|
|
|
action "Chart.yaml changed?" {
|
|
uses = "docker://cdssnc/touched-github-action"
|
|
args = "\"{**Chart.yaml}\""
|
|
}
|
|
|
|
action "Package Helm Chart(s)" {
|
|
uses = "billimek/gh-actions/helm-gh-pages@master"
|
|
secrets = ["GITHUB_TOKEN"]
|
|
args = "[\".\",\"https://billimek.com/billimek-charts/\"]"
|
|
needs = ["Chart.yaml changed?"]
|
|
}
|