Skip to content

Commit 1f8a1d5

Browse files
committed
ci: update last pointers
1 parent bdedf8a commit 1f8a1d5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build-deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ concurrency:
1717

1818
jobs:
1919
build:
20-
name: Build Tonc
20+
name: Build ndsdoc
2121
runs-on: ubuntu-latest
2222
steps:
23-
- name: Checkout tonc (and submodules)
23+
- name: Checkout ndsdoc (and submodules)
2424
uses: actions/checkout@v2
2525
with:
26-
path: tonc
26+
path: ndsdoc
2727
submodules: 'true'
2828

2929
- name: Install mdbook
@@ -37,27 +37,27 @@ jobs:
3737
- name: Cache build dir
3838
uses: actions/cache@v2
3939
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') }}
4242
restore-keys: |
4343
${{ runner.os }}-build-
4444
4545
- name: Build
46-
working-directory: tonc/
46+
working-directory: ndsdoc/
4747
env:
4848
MDBOOK_BUILD__CREATE_MISSING: "false" # Prevent creating missing files in SUMMARY.md
4949
run: |
5050
mdbook build
5151
5252
- name: Generate sitemap
5353
run: |
54-
cd tonc/output
54+
cd ndsdoc/output
5555
npx sscli --no-clean --base https://ndsdoc.gbadev.net/
5656
5757
- name: Upload artifact
5858
uses: actions/upload-pages-artifact@v1
5959
with:
60-
path: tonc/output
60+
path: ndsdoc/output
6161

6262
deploy:
6363
name: Deploy to GitHub pages

0 commit comments

Comments
 (0)