summaryrefslogtreecommitdiff
path: root/vendor/gitlab-ci-yml/Pages/Gatsby.gitlab-ci.yml
blob: 9df2a4797b25afb84a079730ae3531f43d16649a (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