Skip to content

Commit f216f8b

Browse files
committed
adopt latest version of myst-to-pages.yml
1 parent dafbb93 commit f216f8b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/myst-to-pages.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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

3738
jobs:
@@ -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

0 commit comments

Comments
 (0)