Skip to content

Commit

Permalink
fix(release): Add git and changelog plugins to release
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Jan 2, 2021
1 parent 2c121d7 commit 6b74aec
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
- uses: actions/checkout@v2
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
100 changes: 100 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@
},
"devDependencies": {
"@feathersjs/feathers": "^4.5.8",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/node": "^14.11.5",
Expand All @@ -75,9 +77,8 @@
"release"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
"@semantic-release/changelog",
"@semantic-release/git"
]
}
}

0 comments on commit 6b74aec

Please sign in to comment.