summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e08309a7e9e0dab0aa1628f9da38f66174b10013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
before_script:
  - uname -a

pages: # the job must be named pages
  image: node:12-buster
  stage: deploy
  script:
    - npm install --no-package-lock yarn
    - yarn install
    - yarn deploy
    - rm -rf public
    - mv dist public
    - find public
  artifacts:
    paths:
      - public # artifact path must be /public for GitLab Pages to pick it up