Skip to content

Commit dcbf2b3

Browse files
add joss paper draft action
1 parent 2cef06d commit dcbf2b3

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/draft-pdf.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Draft JOSS PDF
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
push:
8+
paths:
9+
- docs/joss_paper/**
10+
- .github/workflows/draft-pdf.yml
11+
12+
jobs:
13+
paper:
14+
runs-on: ubuntu-latest
15+
name: Paper Draft
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
- name: Build joss draft PDF
20+
id: generate-files
21+
uses: xuanxu/paper-action@main
22+
with:
23+
repository_url: http://github.com/PLAID-lib/plaid
24+
branch: joss_paper_workflow
25+
issue_id: 8393
26+
journal: joss
27+
- name: Upload
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: paper
31+
path: ${{ steps.generate-files.outputs.pdf_path}}

0 commit comments

Comments
 (0)