Loading .gitlab-ci.yml 0 → 100644 +20 −0 Original line number Diff line number Diff line image: name: node:latest entrypoint: [""] stages: - deploy pages: stage: deploy tags: - docker script: - npm install - npm run build - mv dist public artifacts: paths: - public only: - master Loading
.gitlab-ci.yml 0 → 100644 +20 −0 Original line number Diff line number Diff line image: name: node:latest entrypoint: [""] stages: - deploy pages: stage: deploy tags: - docker script: - npm install - npm run build - mv dist public artifacts: paths: - public only: - master