diff options
author | pacien | 2018-10-10 03:26:15 +0200 |
---|---|---|
committer | pacien | 2018-10-10 03:26:15 +0200 |
commit | 6f3fc8c44a917ba8248388c886ea1c97dfe4285e (patch) | |
tree | 832cafa37bde091b0bbcbdcee26bcde849b6567e | |
parent | ed6a6495bc629315a9d6b226806c8255c415b54d (diff) | |
download | jacoco-viewer-6f3fc8c44a917ba8248388c886ea1c97dfe4285e.tar.gz |
Register artifact
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 88b0423..98d0d6d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml | |||
@@ -2,11 +2,12 @@ image: node:8.12-alpine | |||
2 | 2 | ||
3 | cache: | 3 | cache: |
4 | key: yarn_cache | 4 | key: yarn_cache |
5 | paths: | 5 | paths: [ .yarn_cache ] |
6 | - .yarn_cache | ||
7 | 6 | ||
8 | build: | 7 | build: |
9 | script: | 8 | script: |
10 | - yarn install --cache-folder .yarn_cache | 9 | - yarn install --cache-folder .yarn_cache |
11 | - yarn build | 10 | - yarn build |
11 | artifacts: | ||
12 | paths: [ build ] | ||
12 | 13 | ||