From 1363d6cdd1cfaeb11ea6dfbc74bd16114ad1a571 Mon Sep 17 00:00:00 2001 From: Randolf Jung Date: Tue, 10 Mar 2026 18:24:27 -0700 Subject: [PATCH] fix: add submodules checkout in release workflow The build was failing because third_party/LaTeX-Workshop submodule was not initialized during the release build step. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 703143d..aac7f76 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + submodules: recursive - name: Set up pnpm uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 - name: Set up Node.js