From 90e8df9ccf421c1450081d632b2cefdf401529e2 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Thu, 30 Mar 2023 16:08:25 +0200 Subject: [PATCH] Fix regex for tags trigger in CI/CD (#104) --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0268c8b1a..c929fd9ba 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -7,7 +7,7 @@ on: - completed push: tags: - - "^v.*" + - "v*" permissions: contents: read diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4752d377f..3c05ae631 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: branches: - master tags: - - "^v.*" + - "v*" pull_request: permissions: