From 75704e3637b1d9cc37a36d1700b06dc15af6590e Mon Sep 17 00:00:00 2001 From: Alper Altuntas Date: Sun, 27 Oct 2024 16:39:07 -0600 Subject: [PATCH] add sphinx_rtd_theme to sphinx workflow --- .github/workflows/sphinx.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 77afde6..db4afd8 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -9,6 +9,12 @@ jobs: contents: write steps: - uses: actions/checkout@v4 + - name: Set up Conda + uses: conda-incubator/setup-miniconda@v2 + with: + auto-activate-base: true + - name: Install dependencies + run: conda install -y sphinx_rtd_theme - name: Build HTML uses: ammaraskar/sphinx-action@master - name: Upload artifacts