Skip to content

Commit

Permalink
feat: semantic releases (#1563)
Browse files Browse the repository at this point in the history
feat: semantic releases
  • Loading branch information
moul committed Dec 23, 2019
2 parents db3a7ef + 4d88203 commit b720cf5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .releaserc.js
@@ -0,0 +1,8 @@
module.exports = {
branch: 'master',
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/github',
],
};
13 changes: 13 additions & 0 deletions workflows/release.yml
@@ -0,0 +1,13 @@
name: Semantic Release

on: push

jobs:
semantic-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: codfish/semantic-release-action@v1
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b720cf5

Please sign in to comment.