From 19f121e937b40387eedc80f6c8bc459383800450 Mon Sep 17 00:00:00 2001 From: Fereshteh Yousefirizi <84542058+qurit-frizi@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:57:08 -0700 Subject: [PATCH] Update draft-pdf.yml --- .github/workflows/draft-pdf.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/draft-pdf.yml b/.github/workflows/draft-pdf.yml index 737cc74..c710d2e 100644 --- a/.github/workflows/draft-pdf.yml +++ b/.github/workflows/draft-pdf.yml @@ -2,7 +2,7 @@ name: Draft PDF on: push: paths: - - paper/** + - Paper/** # Update to track changes in the correct directory - .github/workflows/draft-pdf.yml jobs: @@ -12,18 +12,18 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - + - name: List directory contents - run: ls -R - + run: ls -R # Lists the directory contents for debugging + - name: Build draft PDF uses: openjournals/openjournals-draft-action@master with: journal: joss - paper-path: paper/paper.md # Update this to match the location of your paper.md file - + paper-path: Paper/paper.md # Specify the correct path to paper.md + - name: Upload uses: actions/upload-artifact@v4 with: name: paper - path: paper/paper.pdf # Ensure this matches the output path of your generated PDF + path: Paper/paper.pdf # Ensure the output path matches where the PDF is generated