1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-31 10:07:22 +01:00
Files
dozzle/.github/main.workflow
2019-03-17 10:18:30 -07:00

23 lines
449 B
HCL

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