From 65c15d2519e00125edae55b7704426f7db6f09b6 Mon Sep 17 00:00:00 2001
From: Janne Koschinski <janne@kuschku.de>
Date: Fri, 27 Mar 2020 13:35:25 +0100
Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20run=20CI=20on=20tags?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .gitlab-ci.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3060cce83..89da17d5d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,6 +31,8 @@ build:
   artifacts:
     paths:
       - "*.apk"
+  except:
+    - "tags"
 
 test:
   stage: "test"
@@ -44,6 +46,8 @@ test:
       junit:
         - "*/build/test-results/**/TEST-*.xml"
         - "*/build/reports/*.xml"
+  except:
+    - "tags"
 
 deploy-local:
   stage: "deploy"
@@ -54,6 +58,8 @@ deploy-local:
       - "master"
     variables:
       - "$S3_CONFIG"
+  except:
+    - "tags"
   dependencies:
     - "build"
   script:
@@ -71,6 +77,8 @@ deploy-beta:
       - "master"
     variables:
       - "$FASTLANE_CONFIG"
+  except:
+    - "tags"
   dependencies:
     - "build"
   script:
-- 
GitLab