Skip to content

Commit 3a062b1

Browse files
authored
Update deploy-book.yml
Install missing Python package `ghp-import`, which deploys our documentation to GitHub Pages.
1 parent 7d61941 commit 3a062b1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy-book.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ jobs:
7979

8080
- name: Deploy to GitHub Pages
8181
if: ${{ (github.ref == 'refs/heads/master') && startsWith(matrix.os, 'ubuntu') }}
82-
run: ghp-import -n -p -f _build/html
82+
run: |
83+
pip install ghp-import
84+
ghp-import -n -p -f _build/html
8385
env:
8486
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8587

0 commit comments

Comments
 (0)