Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlonJMejia committed Jul 12, 2024
1 parent 8d065cd commit d3d52a5
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/pandoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Convert Markdown to PDF, DOCX, and HTML
- name: Convert Markdown to PDF
uses: docker://pandoc/core:2.16
with:
args: >
resume.md
-o resume.pdf
&& pandoc resume.md -o resume.docx
&& pandoc resume.md -o index.html
args: resume.md -o resume.pdf

- name: Convert Markdown to DOCX
uses: docker://pandoc/core:2.16
with:
args: resume.md -o resume.docx

- name: Convert Markdown to HTML
uses: docker://pandoc/core:2.16
with:
args: resume.md -o index.html

- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit d3d52a5

Please sign in to comment.