Skip to content

Commit

Permalink
add github action for joss pdf drafting
Browse files Browse the repository at this point in the history
  • Loading branch information
TomWagg committed Sep 6, 2024
1 parent 08f3dec commit 14232c3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/joss_pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Draft JOSS PDF

on:
push:
paths:
- paper/JOSS/**
- .github/workflows/joss_pdf.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
paper-path: paper/JOSS/paper.md
- name: Upload
uses: actions/upload-artifact@v4
with:
name: paper
path: paper/JOSS/paper.pdf

0 comments on commit 14232c3

Please sign in to comment.