Merge pull request #172 from Community-Access/epub-typesetting #1
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 and Word | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'docs/**' | |
| - 'epub/metadata.yaml' | |
| - 'epub/epub.css' | |
| - 'epub/pdf.css' | |
| - 'scripts/build-epub.js' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Pandoc | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -y pandoc | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Build EPUB and Word | |
| run: node scripts/build-epub.js | |
| - name: Upload EPUB artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: git-going-with-github-epub | |
| path: epub/git-going-with-github.epub | |
| retention-days: 90 | |
| - name: Upload Word artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: git-going-with-github-word | |
| path: epub/git-going-with-github.docx | |
| retention-days: 90 | |
| - name: Commit outputs to repository | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add epub/git-going-with-github.epub epub/git-going-with-github.docx | |
| if [ -n "$(git status --porcelain)" ]; then | |
| git commit -m "chore: rebuild EPUB and Word from latest docs" | |
| git push | |
| else | |
| echo "No changes to commit" | |
| fi |