You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows users to install non-standard plugins and shareable
configuration packages for use in their `plugins` and `extends`
without having the install those dependencies in their own
applications.
Closes#168
| branches | The branches on which releases should happen. |
194
-
| plugins | Define the list of plugins to use. Plugins will run in series, in the order defined, for each steps if they implement it |
195
-
| extends | List of modules or file paths containing a shareable configuration. |
196
-
| dry_run | The objective of the dry-run mode is to get a preview of the pending release. Dry-run mode skips the following steps: prepare, publish, success and fail. |
197
-
| repository_url | The git repository URL |
198
-
| tag_format | The Git tag format used by semantic-release to identify releases. |
| branches | `Array`, `String`, `Object` | The branches on which releases should happen. |
196
+
| plugins | `Array` | Define the list of plugins to use. Plugins will run in series, in the order defined, for each steps if they implement it |
197
+
| extends | `Array`, `String` | List of modules or file paths containing a shareable configuration. |
198
+
| additional_packages | `Array`, `String` | Define a list of additional plugins/configurations (official or community) to install. Use this if you 1) use any plugins other than the defaults, which are already installed along with semantic-release or 2) want to extend from a shareable configuration. |
199
+
| dry_run | `Boolean` | The objective of the dry-run mode is to get a preview of the pending release. Dry-run mode skips the following steps: prepare, publish, success and fail. |
200
+
| repository_url | `String` | The git repository URL |
201
+
| tag_format | `String` | The Git tag format used by semantic-release to identify releases. |
202
+
203
+
> **Note**: `additional_packages` won't get used automatically, setting this variable will just install them so you can use them. You'll need to actually list them in your `plugins` and/or `extends` configuration for **semantic-release** to use them.
199
204
200
-
**Note**: The `branch` input is **DEPRECATED**. Will continue to be supported for v1. Use `branches`
205
+
> **Note**: The `branch` input is **DEPRECATED**. Will continue to be supported for v1. Use `branches`
201
206
instead. Previously used in semantic-release v15 to set a single branch on which releases should
0 commit comments