Skip to content

Commit 2103e4c

Browse files
committed
fix yml syntax in docs.yml
1 parent fb0665a commit 2103e4c

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,10 @@ jobs:
2525
auto-update-conda: true
2626

2727
- name: install requirements
28-
run: >-
28+
run: |
2929
conda create -n test python=3.12 --quiet --yes
3030
conda activate test
31-
conda install -n build -c conda-forge
32-
--file requirements/build.txt
33-
--file requirements/run.txt
34-
--file requirements/docs.txt
35-
--quiet --yes
31+
conda install -n build -c conda-forge --file requirements/build.txt --file requirements/run.txt --file requirements/docs.txt --quiet --yes
3632
3733
- name: install the package
3834
run: python -m pip install . --no-deps
@@ -57,4 +53,4 @@ jobs:
5753
uses: peaceiris/actions-gh-pages@v4
5854
with:
5955
github_token: ${{ secrets.GITHUB_TOKEN }}
60-
publish_dir: ./doc/build/html
56+
publish_dir: ./doc/build/html

0 commit comments

Comments
 (0)