From 156ae0d1f699d185c836876139041c02039b5717 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Wed, 30 Aug 2023 14:23:31 +0200 Subject: [PATCH] docs: GH use `requirements.txt` Replaces hard coded dependency. --- .github/workflows/build-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index c20fcb14a4..086a1be378 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Install Dependencies - run: sudo pip3 install sphinx-rtd-theme + run: sudo pip3 install -r docs/requirements.txt - name: Build documentation run: make -C docs html - name: Archive build output