-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed vuepress, add base docusaurus includes * Updated Docusarus files, without the deployment * Fix the footer * Added test deployment * Update deploy-docusaurus.yml * Update docs.yml Disable the old docs workflow * Update deploy-docusaurus.yml * Updated deployment scripts, aligning with ICS * Added deployment script * Removed redundent github workflows * Fix broken tables in governance section * Table -> KeyValueTable; linkify keys * Fix KeyValueTable references; fix code baseline alignment * Add community menu to header * Forum -> Cosmos Forums * Update icon to Cosmos Forums * various updates * Updates to page formatting * Updates to formatting * various changes * Updated base url * Swap algolia keys and swap ICS and Translations sections * Updated ICS section * Added max validators var * Mava integration trial * Update nightly-tests.yml * Update nightly-tests.yml * Update nightly-tests.yml * Removed outdated translations * Removed test mava page, mava currently unavailable * Updated styles, to show missing or hidden items * Added versioning * Fix some nits, update deps and move some docs to new folders * Remove unneeded file * Revert merge mangle in nightly tests * Fix broken links and update docusaurus config --------- Co-authored-by: Aaron Wright <[email protected]>
- Loading branch information
Showing
295 changed files
with
9,885 additions
and
30,033 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,47 @@ | ||
name: Deploy docs | ||
# This job builds and deploys documenation to github pages. | ||
# It runs on every push to main with a change in the docs folder. | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
# - "release/**" | ||
paths: | ||
- "docs/**" | ||
# - "x/**/*.md" | ||
- .github/workflows/deploy-docs.yml | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build-and-deploy: | ||
permissions: | ||
contents: write # for JamesIves/github-pages-deploy-action to push changes in repo | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
path: "." | ||
|
||
- name: Setup Node.js 🔧 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
|
||
# npm install npm should be removed when https://github.com/npm/cli/issues/4942 is fixed | ||
- name: Build 🔧 | ||
run: | | ||
npm install -g [email protected] | ||
make build-docs | ||
- name: Deploy 🚀 | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: ~/output | ||
single-commit: true |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -60,4 +60,4 @@ jobs: | |
} | ||
} | ||
] | ||
} | ||
} |
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.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.