We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e99a0 commit 8cf2e50Copy full SHA for 8cf2e50
.github/workflows/joss.yml
@@ -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
32
+ name: paper
33
+ path: doc/paper/paper.pdf
34
35
+# vim: sw=4
0 commit comments