Update latex template after update of pandoc in Debian Trixie #347
Workflow file for this run
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: build | |
run: ./build_with_docker.sh | |
- name: Archive PDF, HTML and EPUB output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: HTML, PDF and EPUB books | |
path: | | |
build/*.pdf | |
build/*.html | |
build/*.css | |
build/*.epub | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
# Only publish the produced book when this was triggered on the main branch, | |
# and as part of a push (not as part of a pull request). | |
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
# Check links in markdown files. | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: '.mlc_config.json' |