From b1e4bf563e2dd0b4822a676a5af38d4a1fcfe876 Mon Sep 17 00:00:00 2001 From: hjwilli Date: Wed, 27 Nov 2024 12:05:02 -0600 Subject: [PATCH] Update draft-pdf.yml Updated version of Open Journals PDF Generator --- .github/workflows/draft-pdf.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/draft-pdf.yml b/.github/workflows/draft-pdf.yml index 4f3fd76..1d7dc44 100644 --- a/.github/workflows/draft-pdf.yml +++ b/.github/workflows/draft-pdf.yml @@ -1,3 +1,4 @@ +name: Draft PDF on: [push] jobs: @@ -6,18 +7,18 @@ jobs: name: Paper Draft steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build draft PDF uses: openjournals/openjournals-draft-action@master with: journal: joss # This should be the path to the paper within your repo. - paper-path: joss/paper.md + paper-path: paper.md - name: Upload - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: paper # This is the output path where Pandoc will write the compiled # PDF. Note, this should be the same directory as the input # paper.md - path: joss/paper.pdf \ No newline at end of file + path: paper.pdf