Merge pull request #9 from gfanton/feat/add-release-workflow

This commit is contained in:
Guilhem Fanton 2022-11-08 18:05:36 +01:00 committed by GitHub
commit ca39d6735f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
.github/workflows/release.yml vendored Normal file
View File

@ -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 }}