Skip to content

Commit

Permalink
Attempt to add PDF workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasilva committed Dec 15, 2024
1 parent 15d447e commit a6ff795
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,27 @@ jobs:
uses: actions/setup-python@v5
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Build docs
- name: Build HTML docs
run: make html
working-directory: ./docs
- name: Upload artifact
- name: Build PDF docs
run: make pdf
working-directory: ./docs
- uses: xu-cheng/texlive-action@v2
with:
scheme: full
run: |
apk add make
make -C ./docs/build/pdf
- name: Upload GH pages artifacts
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/build/html
- name: Upload PDF artifact
uses: actions/upload-artifact@v4
with:
name: docs-pdf
path: ./docs/build/pdf/minimalrisc-vsoc.pdf
# Deployment job
deploy:
environment:
Expand Down

0 comments on commit a6ff795

Please sign in to comment.