Skip to content

Commit 5b79713

Browse files
committed
Update SharkPool workflow to initialize git submodules before running SharkPools
1 parent 9eda792 commit 5b79713

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/SharkPool.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
- name: Install dependencies
2121
run: npm install
2222
- name: Run SharkPools
23-
run: npm run sharkpools
23+
run: |
24+
git submodule update --init --recursive
25+
npm run sharkpools
2426
env:
2527
ZEROCAT_TOKEN_SHARKPOOL: ${{ secrets.ZEROCAT_TOKEN_SHARKPOOL }}
2628
ZEROCAT_BACKEND: ${{ vars.ZEROCAT_BACKEND }}

0 commit comments

Comments
 (0)