From 1845c8cc5a5c32e979243ca2d244c3285c0427c7 Mon Sep 17 00:00:00 2001 From: Sudhir Mitharwal <6812992+sudkumar@users.noreply.github.com> Date: Sat, 4 Jan 2020 18:31:33 +0530 Subject: [PATCH] fix(docs): extra_plugins must be in release config Plugins passed in `extra_plugins` must be specified in the semantic release plugins array as well. https://semantic-release.gitbook.io/semantic-release/usage/configuration#plugins Fixes #10 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f33b0aa..5c169d0 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ steps: extra_plugins: | @semantic-release/git @semantic-release/changelog@3.0.0 + # NOTE: These extra plugins must also be specified in the your release config's plugins array env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}