Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-01-17 21:51:32 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-01-17 21:51:32 +0300
commitc10dba7734467eb6028a6ce04c6b0e654c9046ae (patch)
treede1d5cb87c41c8edfd71a551943736055ec20ca6 /.gitlab-ci.yml
parentfb855529aa10a755668f220ea21ff06519fd62ec (diff)
Replace / with - in cache names
This was causing .gitlab-ci.yml to be invalid
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6ea9ec17..0180b97f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -25,7 +25,7 @@ variables:
- public
expire_in: 1w
cache:
- key: "$CI_BUILD_NAME/$CI_BUILD_REF_NAME"
+ key: "$CI_BUILD_NAME-$CI_BUILD_REF_NAME"
paths:
- tmp/
- vendor/ruby
@@ -55,7 +55,7 @@ internal_links:
- nanoc check internal_links
allow_failure: true
cache:
- key: "$CI_BUILD_NAME/$CI_BUILD_REF_NAME"
+ key: "$CI_BUILD_NAME-$CI_BUILD_REF_NAME"
paths:
- vendor/ruby
tags:
@@ -73,7 +73,7 @@ scss_lint:
script:
- bundle exec scss-lint
cache:
- key: "$CI_BUILD_NAME/$CI_BUILD_REF_NAME"
+ key: "$CI_BUILD_NAME-$CI_BUILD_REF_NAME"
paths:
- vendor/ruby
tags: