Skip to content

Commit a219498

Browse files
committed
Adding retrieval of ORCID records to the workflow of book deployment.
1 parent 4042c54 commit a219498

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/deploy-book.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ name: deploy-book
44
on:
55
push:
66
branches:
7-
- main
8-
7+
- main
8+
99
# This job installs dependencies, build the book, and pushes it to `gh-pages`
1010
jobs:
1111
deploy-book:
@@ -23,6 +23,11 @@ jobs:
2323
run: |
2424
pip install -r content/requirements.txt
2525
26+
# Fetch ORCID records
27+
- name: Fetch ORCID records
28+
run: |
29+
cd content; python orcid_to_bib.py
30+
2631
# Build the page
2732
- name: Build the book
2833
run: |

0 commit comments

Comments
 (0)