1
0
mirror of https://github.com/amir20/dozzle.git synced 2026-01-04 12:05:07 +01:00

Fixes releaser

This commit is contained in:
Amir
2019-03-18 09:27:56 -07:00
parent 3772d36e41
commit b7004b2068
3 changed files with 31 additions and 5 deletions

10
.github/main.workflow vendored
View File

@@ -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"
}