1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00
kyverno/.github/main.workflow
2020-04-29 09:57:49 -07:00

18 lines
No EOL
282 B
HCL

workflow "Release" {
on = "push"
resolves = ["goreleaser"]
}
action "is-tag" {
uses = "actions/bin/filter@master"
args = "tag"
}
action "goreleaser" {
uses = "docker://goreleaser/goreleaser"
secrets = [
"GITHUB_TOKEN",
]
args = "release"
needs = ["is-tag"]
}