This repository was archived by the owner on Jul 3, 2026. It is now read-only.
Merge branch 'main' into main #248
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 Book | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| if: ${{ github.repository_owner == 'pluralitybook' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Rebuild the plurality.net website | |
| env: | |
| REBUILD_WEBHOOK: ${{ secrets.REBUILD_WEBHOOK }} | |
| run: | | |
| curl -X POST -d {} "$REBUILD_WEBHOOK" | |
| - 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 | |
| - uses: ncipollo/release-action@v1 | |
| with: | |
| artifacts: "*.pdf,*.epub" | |
| tag: latest | |
| allowUpdates: true |