From 3a062b1ce9547c9628829f7910e14c429ab22796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaman=20G=C3=BC=C3=A7l=C3=BC?= Date: Thu, 6 Mar 2025 10:09:35 +0100 Subject: [PATCH] Update deploy-book.yml Install missing Python package `ghp-import`, which deploys our documentation to GitHub Pages. --- .github/workflows/deploy-book.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-book.yml b/.github/workflows/deploy-book.yml index 3c54462..8eb68d6 100644 --- a/.github/workflows/deploy-book.yml +++ b/.github/workflows/deploy-book.yml @@ -79,7 +79,9 @@ jobs: - name: Deploy to GitHub Pages if: ${{ (github.ref == 'refs/heads/master') && startsWith(matrix.os, 'ubuntu') }} - run: ghp-import -n -p -f _build/html + run: | + pip install ghp-import + ghp-import -n -p -f _build/html env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}