Skip to content

Commit 9581027

Browse files
committed
Fix CI: use pandoc directly instead of docker
1 parent 7075749 commit 9581027

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/md-to-pdf.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
run: |
1313
echo "files=$(printf '\"%s\" ' *.md | sed 's/ \"sidebar\.md\"/ /' | sed 's/ \"overview\.md\"/ /' && printf '\"%s\" ' extensions/*.md)" > $GITHUB_OUTPUT
1414
mkdir output
15-
- uses: docker://pandoc/extra:latest-ubuntu
16-
with:
17-
args: >-
15+
- name: Running Pandoc
16+
run: |
17+
pandoc
1818
--output=output/aseprite-docs.pdf "overview.md" ${{ steps.files_list.outputs.files }}
1919
--pdf-engine=lualatex
2020
-f markdown_github
@@ -30,7 +30,7 @@ jobs:
3030
-V colorlinks
3131
-V urlcolor=NavyBlue
3232
-V geometry:"top=2cm, bottom=1.5cm, left=2cm, right=2cm"
33-
- uses: actions/upload-artifact@master
33+
- uses: actions/upload-artifact@v4
3434
with:
3535
name: aseprite-docs
3636
path: output/aseprite-docs.pdf

0 commit comments

Comments
 (0)