From f0c71e3831a21483529e81cc98ed78c5a6d1c1b8 Mon Sep 17 00:00:00 2001 From: Marek Sobolak Date: Tue, 7 Nov 2023 21:45:28 +0100 Subject: [PATCH] Trigger pipeline for any pushed tag. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c5ce6b07f..ca288993d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ on: branches: - "**" tags: - - "v**" + - "**" pull_request: paths-ignore: - 'LICENSE' @@ -539,7 +539,7 @@ jobs: if: | success() && github.event_name != 'pull_request' && - startsWith(github.ref, 'refs/tags/v') + startsWith(github.ref, 'refs/tags/') environment: name: production url: ${{ vars.ENV_RELEASE_URL }}