Skip to content

Commit 97d159b

Browse files
committed
fix deploy workflow 2
1 parent 39655ac commit 97d159b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@ jobs:
2020
steps:
2121
- name: Checkout your repository using git
2222
uses: actions/checkout@v4
23+
with:
24+
submodules: true
2325
- name: Setup Bun
2426
uses: oven-sh/setup-bun@v2
2527
- name: Install dependencies
26-
run: bun install --frozen-lockfile
28+
run: |
29+
bun install --frozen-lockfile
30+
cd obsidian-js-engine-plugin
31+
bun install --frozen-lockfile
32+
cd ..
2733
- name: Install, build, and upload your site
2834
uses: withastro/action@v3
2935
with:

0 commit comments

Comments
 (0)