22 lines
633 B
YAML
22 lines
633 B
YAML
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
# This specific template is located at:
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Pages/Gatsby.gitlab-ci.yml
|
|
|
|
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
|