From bd4dcc2a0a7e62f9e74655f4d5da055a23343544 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 3 Jul 2021 14:35:48 -1000 Subject: [PATCH] ;ci: release: fix tag patterns --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cccb626ac..cee9d495c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,11 @@ name: release # also: "The action does not seem to work for tags created before the workflow." on: push: - tags: [ '[0-9]*', 'r[0-9]*' ] + tags: + - '[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+-*' + - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+-*' jobs: release: