mirror of
https://github.com/amir20/dozzle.git
synced 2026-01-04 12:05:07 +01:00
Fixes releaser
This commit is contained in:
10
.github/main.workflow
vendored
10
.github/main.workflow
vendored
@@ -1,22 +1,22 @@
|
||||
workflow "Release" {
|
||||
on = "push"
|
||||
resolves = [
|
||||
"goreleaser/goreleaser",
|
||||
"release",
|
||||
]
|
||||
}
|
||||
|
||||
action "go-build" {
|
||||
action "test" {
|
||||
uses = "./.github/golang/"
|
||||
}
|
||||
|
||||
action "is-tag" {
|
||||
uses = "actions/bin/filter@master"
|
||||
needs = ["go-build"]
|
||||
needs = ["test"]
|
||||
args = "tag"
|
||||
}
|
||||
|
||||
action "goreleaser/goreleaser" {
|
||||
uses = "docker://goreleaser/goreleaser"
|
||||
action "release" {
|
||||
uses = "./.github/goreleaser/"
|
||||
needs = ["is-tag"]
|
||||
args = "release"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user