From 183fb72f1795b992997cfb583e479596dd408b99 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Wed, 29 Mar 2023 12:16:50 +0200 Subject: [PATCH] Fix regex for tags trigger in CI/CD (#204) --- .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 0268c8b1..c929fd9b 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 4752d377..3c05ae63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: branches: - master tags: - - "^v.*" + - "v*" pull_request: permissions: