From 1c04d44190b5d0727aadcd3f59df65ac02e9cb96 Mon Sep 17 00:00:00 2001 From: samricotta <37125168+samricotta@users.noreply.github.com> Date: Mon, 12 Jun 2023 14:23:11 +0200 Subject: [PATCH 1/2] Update docusaurus.config.js (#6) --- docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 0454ec6f8..e56d017f1 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -13,7 +13,7 @@ const config = { tagline: "Cosmos SDK is the world's most popular framework for building application-specific blockchains.", url: "https://docs.cosmos.network", - baseUrl: "/", + baseUrl: "/cosmos-sdk-docs", onBrokenLinks: "warn", onBrokenMarkdownLinks: "warn", favicon: "img/favicon.svg", From 3d63a59f898c24c269b67391c4235069ea746310 Mon Sep 17 00:00:00 2001 From: samricotta <37125168+samricotta@users.noreply.github.com> Date: Mon, 12 Jun 2023 18:00:27 +0200 Subject: [PATCH 2/2] ci: fix typo in deploy-docs.yml (#7) --- .github/workflows/deploy-docs.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 5e2e3201e..1bd244df6 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -31,8 +31,11 @@ jobs: with: node-version: "16.x" - shell: bash - - run: yarn build + - name: Install Dependencies + run: yarn install --frozen-lockfile + + - name: Build + run: yarn build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.4.1