Skip to content
Snippets Groups Projects
Commit cc92a992 authored by Tom Lutz's avatar Tom Lutz
Browse files

Update .gitlab-ci.yml

parent 11b9c6bb
No related branches found
No related tags found
No related merge requests found
Pipeline #
# 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:
- mkdir .public
- cp -r * .public
- mv .public public
- gitbook build . public # build to public path
artifacts:
paths:
- public
- public
only:
- master
- master # this job will affect only the 'master' branch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment