Skip to content

Commit

Permalink
fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
prashjha committed Oct 18, 2024
1 parent a05e85f commit 632b9f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ workflows:
- build:
filters:
branches:
ignore: gh-pages
ignore:
- gh-pages
- joss
- documentation:
filters:
branches:
Expand Down
17 changes: 11 additions & 6 deletions .github/workflows/pdf-joss.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 632b9f1

Please sign in to comment.