From 380247de6b9e682e52a70b8d181bdda6f5c10482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20C=C3=B4t=C3=A9?= <85751624+cotpat@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:27:25 +0100 Subject: [PATCH] Update checklist-to-pdf.yml fix: corrected output dir --- .github/workflows/checklist-to-pdf.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checklist-to-pdf.yml b/.github/workflows/checklist-to-pdf.yml index afa557d..64590b9 100644 --- a/.github/workflows/checklist-to-pdf.yml +++ b/.github/workflows/checklist-to-pdf.yml @@ -16,12 +16,12 @@ jobs: uses: baileyjm02/markdown-to-pdf@v1 with: input_path: checklist.md - output_dir: . + output_dir: pdfs build_html: false - name: Attach PDF to release uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./checklist.pdf + file: pdfs/checklist.pdf name: checklist-form.pdf tag: ${{ github.ref }}