mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-26 23:21:41 +01:00
Update main.workflow
This commit is contained in:
19
.github/main.workflow
vendored
Normal file
19
.github/main.workflow
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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"]
|
||||
}
|
||||
Reference in New Issue
Block a user