Skip to content

Commit cab2243

Browse files
authored
Merge pull request #437 from NLeSC/pdf-guide-fix
Fix the error that prevented generating the PDF guide on release
2 parents bf16c1d + 60e3251 commit cab2243

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pdf.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: npm install @iomeg/zenodo-upload
2323

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

2727
- name: Generate PDF using the Docker image
2828
run: |
@@ -32,7 +32,8 @@ jobs:
3232
-v "${{ github.workspace }}/images/pdf-cover.pdf":/home/node/resources/cover.pdf:rw \
3333
--user $(id -u):$(id -g) \
3434
-e "PDF_OUTPUT_NAME=guide-nlesc.pdf" \
35-
ghcr.io/kernoeb/docker-docsify-pdf:latest
35+
-e "NO_SANDBOX=true" \
36+
ghcr.io/kernoeb/docker-docsify-pdf:main
3637
3738
- name: Upload PDF as an artifact
3839
if: always()

0 commit comments

Comments
 (0)