From 383a71daea43ada8da15a78c80f0903b51c755af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20H=C3=B6ffner?= Date: Tue, 5 Nov 2024 11:55:45 +0100 Subject: [PATCH] ci, fix: specify changelog builder action regex match mode as it is not the default anymore with v5 --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0fc5ff..d94d35a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: outputs: upload_url: ${{ steps.create-release.outputs.upload_url }} steps: - - name: Build Changelog + - name: Changelog id: changelog uses: mikepenz/release-changelog-builder-action@v5 with: @@ -21,7 +21,8 @@ jobs: "tag_resolver": { "method": "sort", "filter": { - "pattern": "[2-9][0-9]\\.[0-9][0-9]" + "pattern": "[2-9][0-9]\\.[0-9][0-9]", + "method": "match" } } }