From a2e1d6a8bf1af359f6c3c85781086d2168ed6c1e Mon Sep 17 00:00:00 2001 From: Pieter Marsman Date: Sat, 19 Mar 2022 20:53:14 +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 1d4804f..2c6db03 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]{8}" # match version tags with format like 20220319 pull_request: # run on pr's against master branches: - master