From 44beeb5213bd5bc4d5b6acd754568a99e6293ae7 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sat, 28 Feb 2026 12:05:26 -0800 Subject: [PATCH] fix: use SSH deploy key for private verific submodule checkout Made-with: Cursor --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 291738c40..5cc7f0933 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,12 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - submodules: true + submodules: false + ssh-key: ${{ secrets.VERIFIC_DEPLOY_KEY }} + + - name: Initialize submodules + run: | + git submodule update --init --recursive - name: Build wheel in Alpine container run: |