diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index abfd47751b78cae0bc85ac2c53e5493e938b4aeb..0000000000000000000000000000000000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,22 +0,0 @@ -image: node:10.16.3 # change to match your project's node version - -cache: - paths: - - node_modules/ - -before_script: - - rm -rf build - - CI=false npm install - -pages: - stage: deploy - script: - - CI=false npm run build - - rm -rf public - - cp build/index.html build/404.html - - mv build public - artifacts: - paths: - - public - only: - - master