ci: Remove process tags workflow

This commit is contained in:
Krille 2024-02-04 07:15:15 +01:00
parent 46a12d5225
commit e187f7cc62
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -1,28 +0,0 @@
on:
push:
tags:
- "v*"
- "rc*"
name: Process Tags
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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') }}