Skip to content

Fix the error that prevented generating the PDF guide on release #437

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: npm install @iomeg/zenodo-upload

- name: Pull Docker image
run: docker pull ghcr.io/kernoeb/docker-docsify-pdf:latest
run: docker pull ghcr.io/kernoeb/docker-docsify-pdf:main

- name: Generate PDF using the Docker image
run: |
Expand All @@ -32,7 +32,8 @@ jobs:
-v "${{ github.workspace }}/images/pdf-cover.pdf":/home/node/resources/cover.pdf:rw \
--user $(id -u):$(id -g) \
-e "PDF_OUTPUT_NAME=guide-nlesc.pdf" \
ghcr.io/kernoeb/docker-docsify-pdf:latest
-e "NO_SANDBOX=true" \
ghcr.io/kernoeb/docker-docsify-pdf:main

- name: Upload PDF as an artifact
if: always()
Expand Down