Skip to content

Fixing name of Square Root Scale diagram #4

Fixing name of Square Root Scale diagram

Fixing name of Square Root Scale diagram #4

Workflow file for this run

name: Build Book
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Generate book files
run: |
# Install necessary dependencies (e.g., Perl, Docker)
perl scripts/make-book.pl
- name: Generate book files (zh-tw)
run: |
perl scripts/make-book-zh-tw.pl
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: book-files
path: |
Plurality-english.pdf
Plurality-english.epub
Plurality-traditional-mandarin.pdf
Plurality-traditional-mandarin.epub
- uses: ncipollo/release-action@v1
with:
artifacts: "*.pdf,*.epub"
token: ${{ secrets.RELEASE_TOKEN }}
tag: latest
allowUpdates: true