From aaefbeb64e0f754aabe7723de7dfbf4cdd22116a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ioan=20Biz=C4=83u?= Date: Tue, 11 Mar 2025 16:58:52 +0100 Subject: [PATCH] fixup! chore(core): add TROPIC01 model as a submodule --- .github/workflows/core.yml | 5 +++-- .github/workflows/legacy.yml | 5 +++-- .github/workflows/prebuild.yml | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index d41d9d8ccb..235a8ed4b1 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -708,8 +708,9 @@ jobs: continue-on-error: true steps: - uses: actions/checkout@v4 - with: - submodules: recursive + - name: Initialize and update ts-tvl + run: | + git submodule update --init --recursive vendor/ts-tvl - uses: actions/download-artifact@v4 with: pattern: ui-records-* diff --git a/.github/workflows/legacy.yml b/.github/workflows/legacy.yml index 0b0979505d..700962b6f6 100644 --- a/.github/workflows/legacy.yml +++ b/.github/workflows/legacy.yml @@ -196,8 +196,9 @@ jobs: continue-on-error: true steps: - uses: actions/checkout@v4 - with: - submodules: recursive + - name: Initialize and update ts-tvl + run: | + git submodule update --init --recursive vendor/ts-tvl - uses: actions/download-artifact@v4 with: pattern: ui-records-* diff --git a/.github/workflows/prebuild.yml b/.github/workflows/prebuild.yml index 2e13be282f..952d3db41d 100644 --- a/.github/workflows/prebuild.yml +++ b/.github/workflows/prebuild.yml @@ -36,8 +36,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - with: - submodules: "recursive" + - name: Initialize and update ts-tvl + run: | + git submodule update --init --recursive vendor/ts-tvl - uses: ./.github/actions/environment - name: "Run style check" run: nix-shell --run "poetry run make style_check"