From ad97e9dd14b66ec3e4bcc458eb9e90d81c66d866 Mon Sep 17 00:00:00 2001
From: Jonas Leder <jonas@jonasled.de>
Date: Sun, 10 Nov 2019 15:26:45 +0100
Subject: [PATCH] removed master branch from beta builds

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e36e66e..74c8853 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,6 +11,8 @@ stages:
 
 build: #This will be executed on every push. It builds an docker image, which is named after the branch, so you can always use the last state of the different branches.
   stage: build
+  except:
+    - master
   script:
     - echo "building for branch $CI_COMMIT_REF_NAME"
     - sudo docker image prune -f #Delete old unused images
-- 
GitLab