From 734b0533d75a8dd7fd8a0af92076a7fb48dac54c Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Thu, 20 Nov 2025 10:36:21 -0500 Subject: [PATCH] delete joss pdf build workflow --- .github/workflows/compile-joss-paper.yml | 34 ------------------------ 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/compile-joss-paper.yml diff --git a/.github/workflows/compile-joss-paper.yml b/.github/workflows/compile-joss-paper.yml deleted file mode 100644 index 814a6ef..0000000 --- a/.github/workflows/compile-joss-paper.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Compile JOSS paper to PDF -on: - push: - paths: - - paper/** - - .github/workflows/compile-joss-paper.yml - -jobs: - paper: - runs-on: ubuntu-latest - name: 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/paper.pdf - - name: Commit PDF to repository - uses: EndBug/add-and-commit@v9 - with: - message: '(auto) Paper PDF Draft' - # This should be the path to the paper within your repo. - add: 'paper/paper.pdf' # 'paper/*.pdf' to commit all PDFs in the paper directory