debian-mirror-gitlab/lib/gitlab/ci/templates/Pages/Gatsby.gitlab-ci.yml
2019-09-04 21:01:54 +05:30

17 lines
300 B
YAML

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