mirror of
1
0
Fork 0
modern-cmake/.gitlab-ci.yml

29 lines
783 B
YAML
Raw Normal View History

2017-11-10 04:56:22 +01:00
# requiring the environment of NodeJS 8 LTS series (carbon)
image: node:carbon
2016-06-27 11:33:28 +02:00
# add 'node_modules' to cache for speeding up builds
cache:
2017-04-03 13:33:48 +02:00
paths:
2016-06-27 11:33:28 +02:00
- node_modules/ # Node modules and dependencies
before_script:
- npm install gitbook-cli -g # install gitbook
- gitbook fetch latest # fetch latest stable version
2017-10-18 16:20:39 +02:00
- gitbook install # add any requested plugins in book.json
2016-06-27 11:33:28 +02:00
#- gitbook fetch pre # fetch latest pre-release version
#- gitbook fetch 2.6.7 # fetch specific version
2017-10-18 16:20:39 +02:00
2016-06-27 11:33:28 +02:00
# the 'pages' job will deploy and build your site to the 'public' path
pages:
stage: deploy
script:
- gitbook build . public # build to public path
2016-06-27 11:33:28 +02:00
artifacts:
paths:
2017-04-03 13:33:48 +02:00
- public
2017-10-18 16:20:39 +02:00
expire_in: 1 week
2016-06-27 11:33:28 +02:00
only:
2017-04-03 13:33:48 +02:00
- master # this job will affect only the 'master' branch
2017-10-18 16:20:39 +02:00