Skip to content

Commit ca1d3f3

Browse files
committed
fix: docs deployment
1 parent f2f9034 commit ca1d3f3

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/deploy-docs.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ jobs:
1919
uses: oven-sh/setup-bun@v2
2020

2121
- name: Install dependencies
22-
run: bun install
22+
run: |
23+
cd docs
24+
bun install
2325
2426
- name: Deploy
25-
run: bun run docs:deploy
27+
run: |
28+
cd docs
29+
bun run deploy
2630
env:
2731
DECO_DEPLOY_TOKEN: ${{ secrets.DECO_DEPLOY_TOKEN }}

docs/view/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
4141
Edit your `sidebar` and other config in `astro.config.mjs`.
4242
</Card>
4343
<Card title="Deco docs!" icon="open-book">
44-
Deco!!!
44+
Deco!!! again!!!
4545
</Card>
4646
</CardGrid>

0 commit comments

Comments
 (0)