From 632b9f1ba830bb66e4211bcfc31e85751ae60168 Mon Sep 17 00:00:00 2001 From: "Prashant K. Jha" Date: Thu, 17 Oct 2024 19:52:02 -0600 Subject: [PATCH] fix github action --- .circleci/config.yml | 4 +++- .github/workflows/pdf-joss.yml | 17 +++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ac5795e3..6bb906d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -200,7 +200,9 @@ workflows: - build: filters: branches: - ignore: gh-pages + ignore: + - gh-pages + - joss - documentation: filters: branches: diff --git a/.github/workflows/pdf-joss.yml b/.github/workflows/pdf-joss.yml index aa5b21bf..e274889e 100644 --- a/.github/workflows/pdf-joss.yml +++ b/.github/workflows/pdf-joss.yml @@ -1,19 +1,24 @@ +name: Draft PDF on: [push] jobs: paper: runs-on: ubuntu-latest - name: Draft of JOSS paper + name: Paper Draft steps: - name: Checkout - uses: actions/checkout@v2 - - name: Build draft of JOSS paper + uses: actions/checkout@v4 + - name: Build draft PDF uses: openjournals/openjournals-draft-action@master with: journal: joss - paper-path: docs/joss/paper.md + # This should be the path to the paper within your repo. + paper-path: docs/joss/paper.md - name: Upload - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: paper - path: docs/joss/paper.pdf + # 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: docs/joss/paper.pdf \ No newline at end of file