mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-31 10:07:22 +01:00
23 lines
449 B
HCL
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"
|
|
}
|