From 7d16ae6c6fed40f1c32f57026d50e729a2635e11 Mon Sep 17 00:00:00 2001 From: Toru Seo <34780089+toruseo@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:14:01 +0900 Subject: [PATCH] Add files via upload --- .github/workflows/joss-draft-pdf.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/joss-draft-pdf.yml diff --git a/.github/workflows/joss-draft-pdf.yml b/.github/workflows/joss-draft-pdf.yml new file mode 100644 index 0000000..350df29 --- /dev/null +++ b/.github/workflows/joss-draft-pdf.yml @@ -0,0 +1,24 @@ +name: JOSS Draft PDF +on: [push] + +jobs: + paper: + runs-on: ubuntu-latest + name: JOSS Paper Draft + steps: + - name: Checkout + 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: paper/paper.md + - name: Upload + 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: paper.pdf \ No newline at end of file