We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cef06d commit dcbf2b3Copy full SHA for dcbf2b3
.github/workflows/draft-pdf.yml
@@ -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
30
+ name: paper
31
+ path: ${{ steps.generate-files.outputs.pdf_path}}
0 commit comments