From 4ac6b557fa4305d65d10bdb8c763a920d38aa993 Mon Sep 17 00:00:00 2001 From: Nato Boram Date: Thu, 28 Nov 2019 22:10:55 -0500 Subject: [PATCH] remove yarn-ipfs --- .gitlab-ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a261ed4..6cc9632 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,7 @@ image: node:13 before_script: - - yarn global add ipfs-npm - - ipfs-yarn global add @angular/cli - - ipfs-yarn + - yarn cache: paths: @@ -12,24 +10,24 @@ cache: build: stage: build script: - - ipfs-yarn run build:prod + - yarn run build:prod artifacts: paths: - - dist + - dist/angular test: stage: test script: - - ipfs-yarn run lint + - yarn run lint page: stage: deploy script: - - ipfs-yarn run build:gitlab + - yarn run build:gitlab - mv dist/angular public - cp public/index.html public/404.html artifacts: paths: - - public + - dist/public only: - master