We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb04ce9 commit 613b394Copy full SHA for 613b394
2 files changed
.github/workflows/build_docs.yml
@@ -23,11 +23,15 @@ jobs:
23
runs-on: ubuntu-latest
24
steps:
25
- uses: actions/checkout@v4
26
- - uses: actions/setup-node@v4
+
27
+ - name: Setup Python
28
+ uses: actions/setup-python@v5
29
with:
- node-version: 18.x
30
+ python-version: '3.11'
31
32
- name: Install MyST
- run: npm install -g mystmd
33
+ run: python3 -m pip install mystmd
34
35
- name: Build HTML Assets
36
run: myst build --strict --ci --html
37
0 commit comments