File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,16 @@ on: [push]
3
3
jobs :
4
4
build-and-deploy :
5
5
runs-on : ubuntu-latest
6
- if : ${{ contains(github.event.head_commit.message, '[build] ') }}
6
+ if : ${{ contains(github.event.head_commit.message, '[build') }}
7
7
steps :
8
8
- name : Checkout
9
9
uses : actions/checkout@v4
10
+ with :
11
+ repository : expyriment/expyriment
12
+ - name : Checkout
13
+ uses : actions/checkout@v4
14
+ with :
15
+ working-directory : expyriment
10
16
- name : Set up Python
11
17
uses : actions/setup-python@v5
12
18
- name : Install dependencies
@@ -15,13 +21,16 @@ jobs:
15
21
python -m pip install sphinx numpydoc sphinx-rtd-theme
16
22
- name : Install expyriment
17
23
run : | # change back to normal install after testing
24
+ echo "nothing"
18
25
# python -m pip install expyriment
19
- python -m pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple --pre expyriment
26
+ # python -m pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple --pre expyriment
20
27
- name : Build
21
28
run : |
29
+ echo "$PWD
22
30
cd sphinx
23
- python create_rst_api_reference.py
24
- sphinx-build -b html _build/html
31
+ make html
32
+ #python create_rst_api_reference.py
33
+ #sphinx-build -b html _build/html
25
34
cd ..
26
35
- name : Deploy
27
36
uses : JamesIves/github-pages-deploy-action@v4
You can’t perform that action at this time.
0 commit comments