Skip to content

Commit ec17f17

Browse files
committed
Adds the PDF and DOCX to the repo.
1 parent 53aabe2 commit ec17f17

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

.github/workflows/publish.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,30 @@ jobs:
3535
- name: Render Quarto
3636
uses: quarto-dev/quarto-actions/render@v2
3737

38+
3839
- name: Publish to GitHub Pages
3940
if: github.event_name != 'pull_request'
4041
uses: quarto-dev/quarto-actions/publish@v2
4142
with:
4243
render: false
4344
target: gh-pages
4445
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+

0 commit comments

Comments
 (0)