-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# requiring the environment of NodeJS 10 | ||
image: node:10 | ||
|
||
# add 'node_modules' to cache for speeding up builds | ||
cache: | ||
paths: | ||
- node_modules/ # Node modules and dependencies | ||
|
||
before_script: | ||
- npm install gitbook-cli -g # install gitbook | ||
- gitbook fetch 3.2.3 # fetch final stable version | ||
- gitbook install # add any requested plugins in book.json | ||
|
||
test: | ||
stage: test | ||
script: | ||
- gitbook build . public # build to public path | ||
only: | ||
- branches # this job will affect every branch except 'master' | ||
except: | ||
- 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 | ||
expire_in: 1 week |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Summary | ||
|
||
* [Test4](docs/Test4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Hello World! | ||
|
||
Test4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 1, | ||
"description": "Librairy for Map Making" | ||
"description": "Library for Map Making" | ||
} | ||
} |