Compare commits

..

No commits in common. "master" and "v0.1.6" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,7 @@ signs:
# args: ["-u", "<key id, fingerprint, email, ...>", "--output", "${signature}", "--detach-sign", "${artifact}"] # args: ["-u", "<key id, fingerprint, email, ...>", "--output", "${signature}", "--detach-sign", "${artifact}"]
# #
# defaults to `["--output", "${signature}", "--detach-sign", "${artifact}"]` # defaults to `["--output", "${signature}", "--detach-sign", "${artifact}"]`
args: ["dgst", "-sha256", "-sign", "privkey.pem", "-out", "${artifact}.sig", "${artifact}"] args: ["dgst", "-sha256", "-sign", "privkey.pem", "${artifact}.sig", "${artifact}"]
artifacts: all artifacts: all
gitea_urls: gitea_urls:
api: https://git.lbsfilm.at/api/v1/ api: https://git.lbsfilm.at/api/v1/

View File

@ -27,7 +27,7 @@ func main() {
} else { } else {
fmt.Println("Success") fmt.Println("Success")
} }
} else if os.Args[1] == "version" || os.Args[1] == "v" { } else if os.Args[1] == "version" {
fmt.Print("Version ") fmt.Print("Version ")
fmt.Println(gitTag) fmt.Println(gitTag)
} else { } else {