From d393fa1f748680b40b1f315155c87cd4d7bbca0e Mon Sep 17 00:00:00 2001 From: Max Nowack Date: Fri, 23 Feb 2024 13:47:04 +0100 Subject: [PATCH] ci: add release workflow --- .github/workflows/release.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..39206b8 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,23 @@ +name: Release + +on: + push: + tags: + - '!refs/tags/*' + - '!*' + - v* + +permissions: + contents: write + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: Create Release + steps: + - uses: maxnowack/action-release-generator@v1.4.0 + with: + token: "${{ secrets.GITHUB_TOKEN }}" + useNameFromRef: 'true' + ref: "${{ github.ref }}" + badwords: 'ci:,docs:,chore:,chore(deps),fix(deps)'