Skip to content

Commit 8cf2e50

Browse files
committed
ci: add build for JOSS paper
1 parent 08e99a0 commit 8cf2e50

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/joss.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: JOSS Paper
2+
on:
3+
push:
4+
paths:
5+
- doc/paper/**
6+
- .github/workflows/joss.yml
7+
pull_request:
8+
schedule:
9+
- cron: '17 3 * * 0'
10+
11+
concurrency:
12+
group: ${{ github.head_ref || github.ref_name }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
paper:
17+
runs-on: ubuntu-latest
18+
name: Paper Draft
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v5
22+
23+
- name: Build draft PDF
24+
uses: openjournals/openjournals-draft-action@master
25+
with:
26+
journal: joss
27+
paper-path: doc/paper/paper.md
28+
29+
- name: Upload
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: paper
33+
path: doc/paper/paper.pdf
34+
35+
# vim: sw=4

0 commit comments

Comments
 (0)