From 5100d7607f3aafe7fae2264a31fd44c64e5f235c Mon Sep 17 00:00:00 2001 From: crvernon Date: Fri, 12 Apr 2024 09:58:15 -0400 Subject: [PATCH] add joss paper compile --- .github/workflows/paper.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/paper.yml diff --git a/.github/workflows/paper.yml b/.github/workflows/paper.yml new file mode 100644 index 0000000..62a51c6 --- /dev/null +++ b/.github/workflows/paper.yml @@ -0,0 +1,27 @@ +--- +on: # yamllint disable-line rule:truthy + push: + branches-ignore: + - '**' +jobs: + paper: + runs-on: ubuntu-latest + name: Paper Draft + steps: + - name: Checkout + uses: actions/checkout@v2 + - 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@v1 + 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/paper.pdf + \ No newline at end of file