Skip to content

Commit

Permalink
feat: semantic-release added (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
akosbalasko authored May 17, 2022
1 parent 6f2a27a commit 1d79998
Show file tree
Hide file tree
Showing 4 changed files with 7,803 additions and 3,838 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tag + Release NPM
on:
push:
branches: [master]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
branch: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
9 changes: 9 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/npm"
]
}
Loading

0 comments on commit 1d79998

Please sign in to comment.