From f1932e0d451951c7af9451dc8c65eeceea8b4e7b Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Thu, 1 Aug 2019 10:34:31 +0200
Subject: [PATCH] Remove unneeded tags

The tags request hosts that are able to run a docker engine. This means
they require privileged execution. This is no longer the case, since we
use podman now. This patch removes the requirement for that.
---
 .gitlab-ci.yml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1e4c300..d2c2213 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,8 +10,6 @@ build-master:
     - podman push "$CI_REGISTRY_IMAGE:18.04"
   only:
     - master
-  tags:
-    - docker
 
 build:
   stage: build
@@ -20,5 +18,3 @@ build:
     - podman push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
   except:
     - master
-  tags:
-    - docker
-- 
GitLab