Skip to content

Update cover image to alternative 4 in PDF generation #24

Update cover image to alternative 4 in PDF generation

Update cover image to alternative 4 in PDF generation #24

Workflow file for this run

name: Genera PDF
on:
push:
branches:
- main
paths:
- 'book/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: generate pdf
run: |
cd book
pip install reportlab markdown Pillow
python ebook.py
- name: commit & push
run: |
git add -A
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "update ebook"
git push