Skip to content

Commit 5c9ff33

Browse files
author
Tobias Buck
committed
Fix file paths in draft PDF workflow to use absolute paths
1 parent 0da0256 commit 5c9ff33

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/draft-pdf.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Draft PDF
22
on:
33
push:
44
paths:
5-
- ./paper/paper.md
6-
- ./paper/paper.bib
5+
- /paper/paper.md
6+
- /paper/paper.bib
77
- .github/workflows/draft-pdf.yml
88

99
jobs:
@@ -18,12 +18,12 @@ jobs:
1818
with:
1919
journal: joss
2020
# This should be the path to the paper within your repo.
21-
paper-path: ./paper/paper.md
21+
paper-path: /paper/paper.md
2222
- name: Upload
2323
uses: actions/upload-artifact@v4
2424
with:
2525
name: paper
2626
# This is the output path where Pandoc will write the compiled
2727
# PDF. Note, this should be the same directory as the input
2828
# paper.md
29-
path: ./paper/paper.pdf
29+
path: /paper/paper.pdf

0 commit comments

Comments
 (0)