summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Pages/Gatsby.gitlab-ci.yml
blob: a683561a45573cf1bedcbba160eadeeb74d77291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: node:latest

# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
  paths:
    - node_modules/

pages:
  script:
    - yarn install
    - ./node_modules/.bin/gatsby build --prefix-paths
  artifacts:
    paths:
      - public
  only:
    - master