-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Epub, Mobi, and PDF formats are not generated anymore #610
Comments
This appears to be an issue with gitbook-cli: GitbookIO/gitbook-cli#110. |
I made a Dockerfile that builds and image containing the output in FROM node:10
RUN apt update
RUN apt install calibre-bin -y
RUN npm install -g gitbook-cli
WORKDIR /app/
COPY . .
RUN gitbook install
RUN mkdir /output
RUN gitbook mobi . /output/typescript-book.mobi` Just make sure that the context for the image build is the root of the book's repo. |
Built the book just now from master: https://drive.google.com/drive/folders/1kBv2xzKssiQfrR6PED8rWPS2IFcoxGU6?usp=sharing Hoping to make someone's life easier... |
During the last builds the step 'Run gitbook install' was not successful so the build failed and subsequent steps were skipped. The returned error is
TypeError: cb.apply is not a function
atFSReqCallback.oncomplete
.As a result the Epub, Mobi, and PDF formats are not generated anymore with Github Actions.
The text was updated successfully, but these errors were encountered: