Skip to content

Commit 44ed461

Browse files
committed
change default deployment stage to production. Closes #648
1 parent d273f38 commit 44ed461

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/cli/deploy/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919

2020
func init() {
2121
cmd := root.Command("deploy", "Deploy the project.").Default()
22-
stage := cmd.Arg("stage", "Target stage name.").Default("staging").String()
22+
stage := cmd.Arg("stage", "Target stage name.").Default("production").String()
2323
noBuild := cmd.Flag("no-build", "Disable build related hooks.").Bool()
2424

2525
cmd.Example(`up deploy`, "Deploy to the staging environment.")

0 commit comments

Comments
 (0)