From a4b4e9bc00f494a94c5324763667fec8ba3ebf4f Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Tue, 20 Mar 2018 14:41:36 +0100 Subject: [PATCH] Fixed lint issues in ci file --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 41414958de..38492f6145 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,7 +16,7 @@ test_api: stage: test image: funkwhale/funkwhale:latest cache: - key: "$CI_PROJECT_ID/pip_cache" + key: "$CI_PROJECT_ID__pip_cache" paths: - "$PIP_CACHE_DIR" variables: @@ -46,7 +46,7 @@ test_front: - yarn install - yarn run unit cache: - key: "$CI_PROJECT_ID/front_dependencies" + key: "$CI_PROJECT_ID__front_dependencies" paths: - front/node_modules - front/yarn.lock @@ -68,7 +68,7 @@ build_front: - yarn install - yarn run build cache: - key: "$CI_PROJECT_ID/front_dependencies" + key: "$CI_PROJECT_ID__front_dependencies" paths: - front/node_modules - front/yarn.lock -- GitLab