-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0 parents
commit bdedf8a
Showing
110 changed files
with
12,160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
* text=auto | ||
Cargo.lock -diff | ||
*.css text | ||
*.htm text | ||
*.html text | ||
*.md text | ||
*.jpg binary | ||
*.png binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: gbadev-org | ||
open_collective: gbadev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Build and deploy an updated version of ndsdoc | ||
|
||
on: | ||
push | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
name: Build Tonc | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout tonc (and submodules) | ||
uses: actions/checkout@v2 | ||
with: | ||
path: tonc | ||
submodules: 'true' | ||
|
||
- name: Install mdbook | ||
uses: peaceiris/actions-mdbook@v1 | ||
with: | ||
mdbook-version: 0.4.33 | ||
|
||
- name: Install static-sitemap-cli | ||
run: npm install static-sitemap-cli | ||
|
||
- name: Cache build dir | ||
uses: actions/cache@v2 | ||
with: | ||
path: tonc/target/ | ||
key: ${{ runner.os }}-build-${{ hashFiles('tonc/Cargo.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-build- | ||
- name: Build | ||
working-directory: tonc/ | ||
env: | ||
MDBOOK_BUILD__CREATE_MISSING: "false" # Prevent creating missing files in SUMMARY.md | ||
run: | | ||
mdbook build | ||
- name: Generate sitemap | ||
run: | | ||
cd tonc/output | ||
npx sscli --no-clean --base https://ndsdoc.gbadev.net/ | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: tonc/output | ||
|
||
deploy: | ||
name: Deploy to GitHub pages | ||
# Do not run this unless *pushing* to `master`. | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/output/ | ||
target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "mdbook-external-links"] | ||
path = mdbook-external-links | ||
url = https://github.com/jonahgoldwastaken/mdbook-external-links | ||
[submodule "mdbook-toc"] | ||
path = mdbook-toc | ||
url = https://github.com/badboy/mdbook-toc |
Oops, something went wrong.