File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ concurrency:
17
17
18
18
jobs :
19
19
build :
20
- name : Build Tonc
20
+ name : Build ndsdoc
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - name : Checkout tonc (and submodules)
23
+ - name : Checkout ndsdoc (and submodules)
24
24
uses : actions/checkout@v2
25
25
with :
26
- path : tonc
26
+ path : ndsdoc
27
27
submodules : ' true'
28
28
29
29
- name : Install mdbook
@@ -37,27 +37,27 @@ jobs:
37
37
- name : Cache build dir
38
38
uses : actions/cache@v2
39
39
with :
40
- path : tonc /target/
41
- key : ${{ runner.os }}-build-${{ hashFiles('tonc /Cargo.lock') }}
40
+ path : ndsdoc /target/
41
+ key : ${{ runner.os }}-build-${{ hashFiles('ndsdoc /Cargo.lock') }}
42
42
restore-keys : |
43
43
${{ runner.os }}-build-
44
44
45
45
- name : Build
46
- working-directory : tonc /
46
+ working-directory : ndsdoc /
47
47
env :
48
48
MDBOOK_BUILD__CREATE_MISSING : " false" # Prevent creating missing files in SUMMARY.md
49
49
run : |
50
50
mdbook build
51
51
52
52
- name : Generate sitemap
53
53
run : |
54
- cd tonc /output
54
+ cd ndsdoc /output
55
55
npx sscli --no-clean --base https://ndsdoc.gbadev.net/
56
56
57
57
- name : Upload artifact
58
58
uses : actions/upload-pages-artifact@v1
59
59
with :
60
- path : tonc /output
60
+ path : ndsdoc /output
61
61
62
62
deploy :
63
63
name : Deploy to GitHub pages
You can’t perform that action at this time.
0 commit comments