Skip to content

Commit 6b74aec

Browse files
committed
fix(release): Add git and changelog plugins to release
1 parent 2c121d7 commit 6b74aec

3 files changed

Lines changed: 108 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- name: Semantic Release
1414
uses: cycjimmy/semantic-release-action@v2
15+
with:
16+
extra_plugins: |
17+
@semantic-release/changelog
18+
@semantic-release/git
1519
env:
1620
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1721
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package-lock.json

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@
5858
},
5959
"devDependencies": {
6060
"@feathersjs/feathers": "^4.5.8",
61+
"@semantic-release/changelog": "^5.0.1",
6162
"@semantic-release/commit-analyzer": "^8.0.1",
63+
"@semantic-release/git": "^9.0.0",
6264
"@semantic-release/npm": "^7.0.9",
6365
"@semantic-release/release-notes-generator": "^9.0.1",
6466
"@types/node": "^14.11.5",
@@ -75,9 +77,8 @@
7577
"release"
7678
],
7779
"plugins": [
78-
"@semantic-release/commit-analyzer",
79-
"@semantic-release/release-notes-generator",
80-
"@semantic-release/npm"
80+
"@semantic-release/changelog",
81+
"@semantic-release/git"
8182
]
8283
}
8384
}

0 commit comments

Comments
 (0)