debian-mirror-gitlab/lib/gitlab/ci/templates/Pages/Gatsby.gitlab-ci.yml
2021-01-03 14:25:43 +05:30

17 lines
300 B
YAML

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
only:
- master