From f10a15f9f0c82b8c0ddb082164fcb16c75eb4681 Mon Sep 17 00:00:00 2001
From: Manuel Kieweg <manuel.kieweg@h-da.de>
Date: Mon, 5 Oct 2020 19:24:21 +0000
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ea7ed5828..76626343b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,11 +17,11 @@ code-quality-master:
     - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
       when: manual
   script:
-    # writes golangci-lint output to gl-code-quality-report.json
-    - golangci-lint run --config .ci/.golangci-master.yml | tee gl-code-quality-report.json
+    # writes golangci-lint output to codeclimate.json
+    - golangci-lint run --config .ci/.golangci-master.yml | tee codeclimate.json
   artifacts:
     reports:
-      codequality: gl-code-quality-report.json
+      codequality: codeclimate.json
 
 
 code-quality:
@@ -31,11 +31,11 @@ code-quality:
   rules:
     - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME != $CI_DEFAULT_BRANCH
   script:
-    # writes golangci-lint output to gl-code-quality-report.json
-    - golangci-lint run --config .ci/.golangci.yml | tee gl-code-quality-report.json
+    # writes golangci-lint output to codeclimate.json
+    - golangci-lint run --config .ci/.golangci.yml | tee codeclimate.json
   artifacts:
     reports:
-      codequality: gl-code-quality-report.json
+      codequality: codeclimate.json
 
 Documentation:
   before_script:
-- 
GitLab