Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 84f5e32

Browse files
committed
fix build
1 parent a9d7e1f commit 84f5e32

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install dependencies
4141
run: yarn install # or pnpm install / npm ci
4242
- name: Build with VitePress
43-
run: yarn docs:build # or pnpm docs:build / npm docs:build
43+
run: yarn build # or pnpm build / npm build
4444
- name: Deploy to GitHub Pages
4545
uses: peaceiris/actions-gh-pages@v4
4646
with:

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: yarn install --frozen-lockfile
3131

3232
- name: Build with Base URL
33-
run: BASE='/docs-preview/pr-${{ github.event.number }}/' yarn docs:build
33+
run: BASE='/docs-preview/pr-${{ github.event.number }}/' yarn build
3434

3535
- name: Deploy preview
3636
uses: rossjrw/pr-preview-action@v1

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"scripts": {
3-
"docs:dev": "vitepress dev",
4-
"docs:build": "vitepress build",
5-
"docs:preview": "vitepress preview"
3+
"dev": "vitepress dev",
4+
"build": "vitepress build",
5+
"preview": "vitepress preview"
66
},
77
"devDependencies": {
88
"i": "^0.3.7",

tutorials/gm-world.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
++ b/tutorials/gm-world.md
3-
@@ 1,3
4-
description: Build a sovereign rollup using Ignite, the `gmd` CLI, and a local DA network.
2+
title: GM World tutorial
3+
description: Learn how to build and deploy a CosmWasm-based "gm" (good morning) application using Rollkit.
4+
---
55

66
# GM world rollup
77

@@ -59,7 +59,9 @@ ignite s chain gm --address-prefix gm
5959
cd gm
6060
```
6161

62+
```bas
6263
Install a specific version of ignite to use rollkit
64+
```
6365

6466
```bash
6567
ignite app install -g github.com/ignite/apps/rollkit@9d51c52305be37356a1ecadab8733b77842e1c37

0 commit comments

Comments
 (0)