From c6b1e95f4cb50d91d043390969d6dcf92da7d06f Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 9 May 2021 19:34:48 +0100 Subject: [PATCH] fix(builds): default releases to not be marked as pre-release --- cmd/github-release/publish_cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/github-release/publish_cmd.go b/cmd/github-release/publish_cmd.go index 1431af1..32d385c 100644 --- a/cmd/github-release/publish_cmd.go +++ b/cmd/github-release/publish_cmd.go @@ -28,7 +28,7 @@ func publishCmd() *cli.Command { Name: "prerelease", Usage: "Git SHA of repo to create release on", EnvVars: []string{"RELEASE_PRERELEASE"}, - Value: true, + Value: false, }, }, Action: actionHandler(publishAction),