summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Pages/Gatsby.gitlab-ci.yml
blob: 708c5063cc67b60b41668ace4bcc99b4eaaa2bca (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/ee/ci/yaml/README.html#cache
cache:
  paths:
    - node_modules/

pages:
  script:
    - yarn install
    - ./node_modules/.bin/gatsby build --prefix-paths
  artifacts:
    paths:
      - public
  rules:
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH