From ae7f31574642758a267a118c964ac874c1768ed5 Mon Sep 17 00:00:00 2001 From: Pieter Marsman Date: Sat, 19 Mar 2022 21:10:02 +0100 Subject: [PATCH] Fix github actions tag regex --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 2c6db03..d0fb115 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -5,7 +5,7 @@ on: branches: - master tags: - - "[0-9]{8}" # match version tags with format like 20220319 + - '[0-9]+' # match version tags with only numbers pull_request: # run on pr's against master branches: - master