Skip to content

Commit

Permalink
Adding retrieval of ORCID records to the workflow of book deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbellec committed Jun 18, 2024
1 parent 4042c54 commit a219498
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: deploy-book
on:
push:
branches:
- main
- main

# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
Expand All @@ -23,6 +23,11 @@ jobs:
run: |
pip install -r content/requirements.txt
# Fetch ORCID records
- name: Fetch ORCID records
run: |
cd content; python orcid_to_bib.py
# Build the page
- name: Build the book
run: |
Expand Down

0 comments on commit a219498

Please sign in to comment.