Minor grammar/style edits in chapter-00-preface.adoc #7
This file contains hidden or 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 EPUB (TNG) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-epub: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.4.4' | |
bundler-cache: true | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y python3-pygments | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Build EPUB | |
run: ./build-epub.sh | |
- name: Upload EPUB Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Book-EPUB-TNG | |
path: dist/mastering-cardano-v1.0.0.epub |