Select Git revision
-
Quentin Bolsee authoredQuentin Bolsee authored
.gitlab-ci.yml NaN GiB
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/plain-html
# pages:
# stage: deploy
# script:
# - mkdir .public
# - cp -r _book/* .public
# - mv .public public
# artifacts:
# paths:
# - public
# only:
# - master
# the 'pages' job will deploy and build your site to the 'public' path
pages:
stage: deploy
script:
- gitbook build . public # build to public path
artifacts:
paths:
- public
only:
- master # this job will affect only the 'master' branch