From 6b469ba1d8cea62429d4ff171a7ac9110b97d3a3 Mon Sep 17 00:00:00 2001 From: jo Date: Fri, 20 Jan 2023 15:19:43 +0100 Subject: [PATCH] ci: allow running the pipeline on tags Part-of: --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 836071be3..5c93fdda4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,10 @@ workflow: # Run for any event on the default branches in the funkwhale namespace - if: > $CI_PROJECT_NAMESPACE == "funkwhale" && - $CI_COMMIT_BRANCH =~ /(stable|develop)/ + ( + $CI_COMMIT_BRANCH =~ /(stable|develop)/ || + $CI_COMMIT_TAG + ) # Run for merge requests from any repo or branches - if: $CI_PIPELINE_SOURCE == "merge_request_event"