Skip to content

Commit a390236

Browse files
committed
fix: checkout submodule is now default to false need to manually set to recursive
1 parent 013a269 commit a390236

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
steps:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4
29+
with:
30+
submodules: 'recursive'
2931

3032
- name: Install Node.js
3133
uses: actions/setup-node@v4
@@ -111,6 +113,8 @@ jobs:
111113
steps:
112114
- name: Checkout repository
113115
uses: actions/checkout@v4
116+
with:
117+
submodules: 'recursive'
114118

115119
- name: Install Node.js
116120
uses: actions/setup-node@v4
@@ -190,6 +194,8 @@ jobs:
190194
steps:
191195
- name: Checkout repository
192196
uses: actions/checkout@v4
197+
with:
198+
submodules: 'recursive'
193199

194200
- name: Install Node.js
195201
uses: actions/setup-node@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tidgi",
33
"productName": "TidGi",
44
"description": "Customizable personal knowledge-base with Github as unlimited storage and blogging platform.",
5-
"version": "0.12.3",
5+
"version": "0.12.4",
66
"license": "MPL 2.0",
77
"scripts": {
88
"start": "pnpm run clean && pnpm run init:git-submodule && pnpm run start:without-clean",

0 commit comments

Comments
 (0)