Merge pull request #1034 from shrouxm/patch-2 #397
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 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 |