From 2d13acfbebc99dc62fe73080371bf88c7fe264dd Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Wed, 10 Dec 2025 19:14:34 +0100 Subject: [PATCH] .github/workflows/deploy_release.yml: Fix tag selection These are not regular expressions, see [1]. So let's use something really simple instead. [1]: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#filter-pattern-cheat-sheet --- .github/workflows/deploy_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_release.yml b/.github/workflows/deploy_release.yml index f6238f21..b2c90985 100644 --- a/.github/workflows/deploy_release.yml +++ b/.github/workflows/deploy_release.yml @@ -2,7 +2,7 @@ name: Deploy release on: push: tags: - - '^v\d+(\.\d+)*(\.[0-9A-Za-z]*)*' + - '^v[0-9]+.[0-9]+.[0-9]+' jobs: common-actions: