5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-07 10:46:56 +00:00

Fix README example

closes #17
This commit is contained in:
Benny Powers 2020-01-28 11:17:29 +02:00 committed by GitHub
parent 2399611b71
commit a455a913fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,8 +57,8 @@ steps:
with: with:
# You can specify specifying version range for the extra plugins if you prefer. # You can specify specifying version range for the extra plugins if you prefer.
extra_plugins: | extra_plugins: |
@semantic-release/git
@semantic-release/changelog@3.0.0 @semantic-release/changelog@3.0.0
@semantic-release/git
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@ -70,8 +70,8 @@ _release-config_
plugins: [ plugins: [
. .
. .
+ "@semantic-release/git",
+ "@semantic-release/changelog" + "@semantic-release/changelog"
+ "@semantic-release/git",
] ]
``` ```