diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fab805b078bfbf4c32f1cd6f18b07d2308503f14..a9ee65dfa67afc29306c1e1b313a50266d61c6bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,19 +7,18 @@ fast-build: stage: build image: $CI_REGISTRY_IMAGE before_script: - - pwd - - ls -la - - ls -la /customCache - - ls -la / - mv /customCache/node_modules ./ - cp -rf /customCache/www ./ - cp -rf /customCache/hooks ./ - - ls -la script: - node ./node_modules/gulp/bin/gulp build:web + after_script: + - ls -la platforms/web/ + - du -csh platforms/web/ artifacts: + untracked: true paths: - - public + - platforms/web expire_in: 60 minutes only: - master