File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,12 @@ concurrency:
2727 cancel-in-progress : false
2828
2929
30+ # this is no longer needed as we serve from info-mines.paris
3031# required for MyST
31- env :
32- # `BASE_URL` determines the website is served from, including CSS & JS assets
33- # You may need to change this to `BASE_URL: ''`
34- BASE_URL : /${{ github.event.repository.name }}
32+ # env:
33+ # # `BASE_URL` determines the website is served from, including CSS & JS assets
34+ # # You may need to change this to `BASE_URL: ''`
35+ # BASE_URL: /${{ github.event.repository.name }}
3536
3637
3738jobs :
@@ -42,11 +43,11 @@ jobs:
4243 uses : actions/checkout@v4
4344 - uses : actions/setup-node@v4
4445 with :
45- node-version : 22
46+ node-version : 24
4647 - name : Install MyST Markdown
4748 run : npm install -g mystmd
4849 - name : Install requirements.txt
49- run : pip install -r requirements.txt
50+ run : " if [ -f requirements.txt ]; then pip install -r requirements.txt; fi "
5051 - name : Build HTML Assets
5152 run : (cd notebooks; myst build --execute --html)
5253 - name : Setup Pages
You can’t perform that action at this time.
0 commit comments