Skip to content

Commit

Permalink
Add GitHub Actions workflow for JOSS PDF generation
Browse files Browse the repository at this point in the history
Introduced a GitHub Actions workflow to automate the generation of JOSS paper drafts. This workflow triggers on pushes to the relevant files and creates a draft PDF, which is then uploaded as an artifact.
  • Loading branch information
iosefa committed Sep 21, 2024
1 parent fdfef7c commit 96a5a98
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/paper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: JOSS PDF Generation

on:
push:
paths:
- 'paper/**'
- '.github/workflows/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@v1
with:
journal: joss
paper-path: paper/paper.md

- name: Upload PDF
uses: actions/upload-artifact@v4
with:
name: paper
path: paper.pdf

0 comments on commit 96a5a98

Please sign in to comment.