Browse Source

No start and end characters for regex

Contributes to CURA-9365
j.spijker@ultimaker.com 2 years ago
parent
commit
1c23bb56d1
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .github/workflows/conan-package.yml

+ 3 - 3
.github/workflows/conan-package.yml

@@ -30,9 +30,9 @@ on:
         branches:
             - main
             - 'CURA-*'
-            - '^[\d]+.[\d]+$'
+            - '[\d]+.[\d]+'
         tags:
-            - '^[\d]+.[\d]+$'
+            - '[\d]+.[\d]+'
 
     pull_request:
         paths:
@@ -47,7 +47,7 @@ on:
             - 'requirements*.txt'
         branches:
             - main
-            - '^[\d]+.[\d]+$'
+            - '[\d]+.[\d]+'
 
 
 jobs: