Skip to content

Commit

Permalink
First attempt at GitHub Actions Gerby
Browse files Browse the repository at this point in the history
  • Loading branch information
pbelmans committed Jan 28, 2025
1 parent 81387b6 commit d6be3b5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/gerby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Gerby
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Gerby
run: |
pip install git+https://github.com/gerby-project/plastex.git
- name: Prepare the TeX files
run: |
apk add make
make web
- name: Run Gerby
run: |
plastex --renderer=Gerby book.tex

0 comments on commit d6be3b5

Please sign in to comment.