From ea42976e81ebafa22001c06249a5213dcc39fecd Mon Sep 17 00:00:00 2001
From: Nicolas Pope <nicolas.pope@utu.fi>
Date: Mon, 8 Aug 2022 09:31:35 +0300
Subject: [PATCH] Fix bad gitlab cache key

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b9689c8..7f2caac 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -181,7 +181,7 @@ windows:build_debug:
   dependencies: []
 
   cache: # use artifacts instead if multiple runners available
-    key: $CI_COMMIT_SHORT_SHA
+    key: "$CI_COMMIT_SHORT_SHA debug"
     paths:
       - build_debug/
 
@@ -262,7 +262,7 @@ windows:pack_debug:
   needs: ["windows:test", "windows:build_debug"]
 
   cache: # use artifacts instead if multiple runners available
-    key: $CI_COMMIT_SHORT_SHA
+    key: "$CI_COMMIT_SHORT_SHA debug"
     paths:
       - build_debug/
 
-- 
GitLab