ci: allow running the pipeline on tags

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2325>
environments/review-docs-docs-mup14p/deployments/16950
jo 2023-01-20 15:19:43 +01:00 zatwierdzone przez Marge
rodzic 7504a5fa53
commit 6b469ba1d8
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -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"