From cb2ccfd6badb6a8619442f2f0581ab64b73c40df Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 23 Jul 2022 19:31:46 +0100 Subject: [PATCH] Update compile-pdf.yml --- .github/workflows/compile-pdf.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/compile-pdf.yml b/.github/workflows/compile-pdf.yml index e971c44..9ed6eea 100644 --- a/.github/workflows/compile-pdf.yml +++ b/.github/workflows/compile-pdf.yml @@ -8,19 +8,19 @@ on: - cron: '0 5 * * 6' # Every Saturday morning. jobs: # Job #1 - Generate an embedded SVG asset, showing all contributors - generate-contributors: + compile-pdf: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: baileyjm02/markdown-to-pdf@v1 + - uses: baileyjm02/markdown-to-pdf@v1.2.0 with: input_path: README.md - output_dir: .github/assets/awesome-privacy.pdf + output_dir: .github/assets build_pdf: true build_html: false table_of_contents: false - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v3 with: - name: docs - path: pdfs + name: awesome-privacy-pdf + path: .github/assets/awesome-privacy.pdf