From 02cf1d216125f1a05d6e24931d466d24a03cec41 Mon Sep 17 00:00:00 2001 From: ddahlbom Date: Mon, 23 Dec 2024 18:47:10 -0500 Subject: [PATCH] Try to capture TeX --- .github/workflows/draft-pdf.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/draft-pdf.yml b/.github/workflows/draft-pdf.yml index b754c02ff..5fb0072ef 100644 --- a/.github/workflows/draft-pdf.yml +++ b/.github/workflows/draft-pdf.yml @@ -8,17 +8,23 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Build draft PDF - uses: openjournals/openjournals-draft-action@master + - name: TeX and PDF + # uses: openjournals/openjournals-draft-action@master + uses: docker://openjournals/paperdraft:latest with: - journal: joss - # This should be the path to the paper within your repo. - paper-path: joss/paper.md + # journal: joss + # # This should be the path to the paper within your repo. + # paper-path: joss/paper.md + args '-k joss/paper.md' + env: + GIT_SHA: $GITHUB_SHA + JOURNAL: joss - 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: joss/paper.pdf \ No newline at end of file + # # 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 + path: joss/ \ No newline at end of file