From e187f7cc628533deaaed87fd760e0a313c587a01 Mon Sep 17 00:00:00 2001 From: Krille Date: Sun, 4 Feb 2024 07:15:15 +0100 Subject: [PATCH] ci: Remove process tags workflow --- .github/workflows/process_tags.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/process_tags.yaml diff --git a/.github/workflows/process_tags.yaml b/.github/workflows/process_tags.yaml deleted file mode 100644 index 0aba2538f..000000000 --- a/.github/workflows/process_tags.yaml +++ /dev/null @@ -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') }}