Merge pull request #50 from ferllop/master #7
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
name: build | |
on: | |
push: | |
branches: | |
- master | |
env: | |
BOOK_FILENAME: la-guia-del-profesor-frisby-en-su-mayor-parte-adecuada-para-la-programacion-funcional | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Install Calibre | |
run: | | |
sudo apt install -y libopengl0 libegl1 libxcb-cursor0 | |
wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin | |
mkdir -p ~/.local/bin | |
ln -s /opt/calibre/calibre ~/.local/bin/calibre | |
ln -s /opt/calibre/ebook-convert ~/.local/bin/ebook-convert | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.22.1 | |
- name: Put title on cover | |
run: | | |
sudo apt install -y xfonts-scalable | |
npm run generate-cover | |
- name: Generate summary | |
run: | | |
npm run generate-summary | |
- name: Setup gitbook | |
run: | | |
npm ci | |
npm run setup | |
- name: Generate PDF | |
run: | | |
npm run generate-pdf | |
mv book.pdf ${BOOK_FILENAME}.pdf | |
- name: Generate EPUB | |
run: | | |
npm run generate-epub | |
mv book.epub ${BOOK_FILENAME}.epub | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: PDF | |
path: ${{ env.BOOK_FILENAME }}.pdf | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: EPUB | |
path: ${{ env.BOOK_FILENAME }}.epub | |
- run: echo "ID=$(git describe --tags --always)" >> $GITHUB_OUTPUT | |
id: release-id | |
- uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.release-id.outputs.ID }} | |
files: | | |
${{ env.BOOK_FILENAME }}.pdf | |
${{ env.BOOK_FILENAME }}.epub |