-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(README): mention gitlab support
- Loading branch information
1 parent
083e034
commit dba3baf
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,6 +208,18 @@ npx nx run-many --target=semantic-release --parallel=false | |
``` | ||
> Note: `--parallel=false` is required to run tasks sequentially, otherwise `nx run-many` will run tasks in parallel and semantic-release will fail. | ||
## Gitlab support | ||
|
||
In order to use this plugin on Gitlab, install `@semantic-release/[email protected]` (>= 10.0.0 is not supported for now due to ES format) and set the following in your configuration file: | ||
```json | ||
{ | ||
"plugins": [ | ||
"@semantic-release/gitlab" | ||
], | ||
"github": false, | ||
} | ||
|
||
``` | ||
|
||
## CI/CD | ||
|
||
|