File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,30 @@ jobs:
35
35
- name : Render Quarto
36
36
uses : quarto-dev/quarto-actions/render@v2
37
37
38
+
38
39
- name : Publish to GitHub Pages
39
40
if : github.event_name != 'pull_request'
40
41
uses : quarto-dev/quarto-actions/publish@v2
41
42
with :
42
43
render : false
43
44
target : gh-pages
44
45
env :
45
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
+
48
+ - name : Commit PDF
49
+ if : github.event_name != 'pull_request'
50
+ uses : EndBug/add-and-commit@v9
51
+ with :
52
+ add : ' _manuscript/index.pdf'
53
+ author_name : ' GitHub Actions'
54
+ message : ' Add poster.pdf at ${{ github.sha }}'
55
+
56
+
57
+ - name : Commit DOCX
58
+ if : github.event_name != 'pull_request'
59
+ uses : EndBug/add-and-commit@v9
60
+ with :
61
+ add : ' _manuscript/index.docx'
62
+ author_name : ' GitHub Actions'
63
+ message : ' Add poster.pdf at ${{ github.sha }}'
64
+
You can’t perform that action at this time.
0 commit comments