fix(builds): default releases to not be marked as pre-release

This commit is contained in:
2021-05-09 19:34:48 +01:00
parent 4a672fe0eb
commit c6b1e95f4c

View File

@@ -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),