-
Notifications
You must be signed in to change notification settings - Fork 435
fix: never prompt for env deployment #5262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
just confirming that this is only in the case of the user including the |
|
🍕 Here are the new binary sizes!
|
|
Are there any circumstances under which we would actually want to prompt for env deployment? When they initialize the env, it's implied that they have to deploy it for the command to complete. Maybe we prompt for env deployment when they have not specified the environment flag? |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## mainline #5262 +/- ##
=========================================
Coverage 69.78% 69.78%
=========================================
Files 296 296
Lines 44545 44539 -6
Branches 286 286
=========================================
- Hits 31086 31082 -4
+ Misses 11954 11951 -3
- Partials 1505 1506 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…5262) The new logic with no flags is: 1. Check whether workload is uninitialized. If so, prompt for workload init. 2. Check whether environment is uninitialized. If so, prompt for env init, then proceed directly to env deploy. 3. Deploy workload. Now, there is no extra prompt for environment deployment at any time. The behavior is purely opt-in, which actually I think makes more sense.
The new logic with no flags is:
Now, there is no extra prompt for environment deployment at any time. The behavior is purely opt-in, which actually I think makes more sense.