-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add support for implicit bootstrapping of modules #17
Comments
@ecampidoglio what if I chose to set
The documentation for this, then, should state that setting |
0.* going out of support in a week or so, perhaps that concern can be skipped? |
I think you should be able to run any version of Cake via the action (that's what the Since we're releasing version How about we change the cake-bootstrap: auto # The current default behavior
cake-bootstrap: explicit # Passes the --bootstrap option for Cake >= 1.0.0
cake-bootstrap: skip # Passes the --skip-bootstrap option for Cake <= 1.0.0 The action could detect the version of Cake being run and ignore the parameter if its current value isn't supported. |
Sure, that sounds reasonable. |
This commit changes the `cake-bootstrap` input from a boolean into a three-state switch. The possible values are: - auto: modules are automatically bootstrapped upon running the script (Cake >= 1.0.0) - explicit: bootstraps the modules by passing the `--bootstrap` switch before running the script (Cake <= 1.0.0) - skip: modules are not bootstrapped by passing the `--skip-bootstrap` switch when running the script (Cake >= 1.0.0) The default value is `auto`.
This commit changes the `cake-bootstrap` input from a boolean into a three-state switch. The possible values are: - auto: modules are automatically bootstrapped upon running the script (Cake >= 1.0.0) - explicit: bootstraps the modules by passing the `--bootstrap` switch before running the script (Cake <= 1.0.0) - skip: modules are not bootstrapped by passing the `--skip-bootstrap` switch when running the script (Cake >= 1.0.0) The default value is `auto`.
This commit changes the `cake-bootstrap` input from a boolean into a three-state switch. The possible values are: - auto: modules are automatically bootstrapped upon running the script (Cake >= 1.0.0) - explicit: bootstraps the modules by passing the `--bootstrap` switch before running the script (Cake <= 1.0.0) - skip: modules are not bootstrapped by passing the `--skip-bootstrap` switch when running the script (Cake >= 1.0.0) The default value is `auto`.
This commit changes the `cake-bootstrap` input from a boolean into a three-state switch. The possible values are: - auto: modules are automatically bootstrapped upon running the script (Cake >= 1.0.0) - explicit: bootstraps the modules by passing the `--bootstrap` switch before running the script (Cake <= 1.0.0) - skip: modules are not bootstrapped by passing the `--skip-bootstrap` switch when running the script (Cake >= 1.0.0) The default value is `auto`.
This commit changes the `cake-bootstrap` input from a boolean into a three-state switch. The possible values are: - auto: modules are automatically bootstrapped upon running the script (Cake >= 1.0.0) - explicit: bootstraps the modules by passing the `--bootstrap` switch before running the script (Cake < 1.0.0) - skip: modules are not bootstrapped by passing the `--skip-bootstrap` switch when running the script (Cake >= 1.0.0) The default value is `auto`.
Resolved by 3dc8398. |
As of cake-build/cake#2849, modules are automatically bootstrapped before running the script. While it's still possible to do it explicitly with the
--bootstrap
option, it's no longer necessary. Instead, a new option has been introduced to opt out of the bootstrapping process called--skip-bootstrap
.The Cake action should reflect these changes both in the code and in the documentation.
The text was updated successfully, but these errors were encountered: