From 2a4017b5a50f3dfc3605d7277eae9e0f9b0ff95b Mon Sep 17 00:00:00 2001 From: gfanton <8671905+gfanton@users.noreply.github.com> Date: Tue, 8 Nov 2022 16:04:48 +0100 Subject: [PATCH] feat: add release workflows Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com> --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..60b56fb --- /dev/null +++ b/.github/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 }}