Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
avivace committed Jan 16, 2025
0 parents commit bdedf8a
Showing 110 changed files with 12,160 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
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
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: gbadev-org
open_collective: gbadev
74 changes: 74 additions & 0 deletions .github/workflows/build-deploy.yml
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/output/
target/
6 changes: 6 additions & 0 deletions .gitmodules
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
Loading

0 comments on commit bdedf8a

Please sign in to comment.