We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 192563c + d9b2352 commit 1eee671Copy full SHA for 1eee671
.github/workflows/deploy.yml
@@ -17,22 +17,19 @@ jobs:
17
with:
18
node-version: 11
19
check-latest: true
20
- - name: 'Installing requirements'
+ - name: 'Generating distributable files'
21
run: |
22
- gitbook install
+ rm -f README.md
23
+ mv content/* .
24
+ mv etc/* .
25
+ npm install -g gitbook-cli
26
cp ./book.json ./book.json.template
27
+ gitbook install
28
cd ~/.gitbook/versions/3.2.3 && npm i npm@5
29
cd ${{ github.workspace }}
30
cp ./book.json.template ./book.json
31
gitbook install
- gitbook build
- - name: 'Generating distributable files'
- run: |
- rm -f README.md
32
- mv content/* .
33
- mv etc/* .
34
go run fix-webbook.go -type=pre
35
36
gitbook build
37
go run fix-webbook.go -type=post
38
cd _book
0 commit comments