5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-14 14:03:47 +00:00

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
This commit is contained in:
Sudhir Mitharwal 2020-01-04 18:31:33 +05:30 committed by GitHub
parent 16d8f3d61d
commit 1845c8cc5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,6 +55,7 @@ steps:
extra_plugins: | extra_plugins: |
@semantic-release/git @semantic-release/git
@semantic-release/changelog@3.0.0 @semantic-release/changelog@3.0.0
# NOTE: These extra plugins must also be specified in the your release config's plugins array
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}