Skip to content

Commit 1178790

Browse files
committed
add joss
1 parent 05e5734 commit 1178790

4 files changed

Lines changed: 5171 additions & 0 deletions

File tree

.github/workflows/JOSS.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Compile JOSS paper
2+
3+
on:
4+
push:
5+
paths:
6+
- 'joss' # Se déclenche uniquement pour les changements dans le dossier paper
7+
8+
jobs:
9+
paper:
10+
runs-on: ubuntu-latest
11+
name: Paper Draft
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Build draft PDF
16+
uses: openjournals/openjournals-draft-action@master
17+
with:
18+
journal: joss
19+
# This should be the path to the paper within your repo.
20+
paper-path: joss/paper.md
21+
- name: Upload PDF
22+
uses: actions/upload-artifact@v4
23+
with:
24+
name: paper
25+
path: joss/paper.pdf
26+
27+
- name: Commit PDF
28+
uses: EndBug/add-and-commit@v9
29+
with:
30+
add: 'joss/paper.pdf'
31+
message: 'chore: update paper.pdf'
32+
author_name: 'GitHub Actions'
33+
author_email: 'actions@github.com'
34+
committer_name: 'GitHub Actions'
35+
committer_email: 'actions@github.com'

0 commit comments

Comments
 (0)