From a3db754b854bdbf286e4d0504d1db9c55d9cfa02 Mon Sep 17 00:00:00 2001 From: Krille Date: Sat, 11 Nov 2023 16:31:37 +0100 Subject: [PATCH] ci: Readd process tags workflow --- .github/workflows/process_tags.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/process_tags.yaml diff --git a/.github/workflows/process_tags.yaml b/.github/workflows/process_tags.yaml new file mode 100644 index 000000000..ef9a4b137 --- /dev/null +++ b/.github/workflows/process_tags.yaml @@ -0,0 +1,28 @@ +on: + push: + tags: + - "v*" + - "rc*" + +name: Process Tags + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Get Changelog Entry + id: changelog_reader + uses: mindsers/changelog-reader-action@v2 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body: ${{ steps.changelog_reader.outputs.changes }} + draft: false + prerelease: ${{ startsWith(github.ref, 'rc') }}