-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* temp: move docs -> _old * a base * latetst * gh pages workflow * perms * `deploymentBranch: "gh-pages",` * contents: write * tweaks for prod * v0.50 base url?> * redirect to /spawn/v0.50.0 * f * v0.50 proper redirect? * idk * yaaa babyy * bikes * wip * rm unused imgs * fix a little * full tutorial * typo * deploy only on push to main * cleanup * checklist * latest docs * system req * remove router * final walkthrough
- Loading branch information
1 parent
622ab14
commit 578d28d
Showing
117 changed files
with
18,019 additions
and
411 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,39 @@ | ||
# This deploy-docs workflow was created based on instructions from: | ||
# https://docusaurus.io/docs/deployment | ||
name: Deploy to GitHub Pages | ||
|
||
permissions: | ||
contents: write | ||
actions: write | ||
pages: write | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "docs/**" | ||
- .github/workflows/deploy-docs.yml | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy to GitHub Pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: npm | ||
cache-dependency-path: docs/package-lock.json | ||
|
||
- name: Build website | ||
run: make build-docs | ||
|
||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4.6.4 | ||
with: | ||
branch: gh-pages | ||
folder: docs/build | ||
single-commit: true |
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
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
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,20 @@ | ||
# Dependencies | ||
/node_modules | ||
|
||
# Production | ||
/build | ||
|
||
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
|
||
# Misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.