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 44950ba commit 9dbeaaeCopy full SHA for 9dbeaae
.github/workflows/main.yml
@@ -8,6 +8,10 @@ on:
8
pull_request:
9
branches: [main]
10
11
+env:
12
+ # `BASE_URL` determines the website served from, including CSS and JS assets
13
+ BASE URL: /${{ github.event.repository.name }}
14
+
15
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
16
permissions:
17
contents: read
@@ -36,7 +40,9 @@ jobs:
36
40
run: npm install -g mystmd
37
41
38
42
- name: Build HTML assets
39
- run: myst build book/myst.yml --html # It's good practice to specify the config file
43
+ run: |
44
+ cd book
45
+ myst build --html
46
47
- name: Display myst build log for debugging
48
run: cat book/_build/logs/myst.build.json
0 commit comments