From e9ec3d673436c7c0d94f31da0c052e06688feb30 Mon Sep 17 00:00:00 2001 From: MrMirDan Date: Mon, 20 Apr 2026 14:31:33 +0300 Subject: [PATCH] update: 'get sources' step and windows shell --- .github/workflows/deploy.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1d568328f..1288f3b4e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -747,6 +747,9 @@ jobs: steps: - name: 'Get sources' uses: actions/checkout@v4 + with: + submodules: 'true' + fetch-depth: 10 - name: 'Install Qt' uses: jurplel/install-qt-action@v3 @@ -789,6 +792,9 @@ jobs: steps: - name: 'Get sources' uses: actions/checkout@v4 + with: + submodules: 'true' + fetch-depth: 10 - name: 'Install Qt' uses: jurplel/install-qt-action@v3 @@ -812,10 +818,11 @@ jobs: choco install ninja -y - name: 'Configure' + shell: cmd run: | cmake -B build -G Ninja ^ - -DCMAKE_BUILD_TYPE=Release ^ - -DBUILD_TESTING=ON + -DCMAKE_BUILD_TYPE=Release ^ + -DBUILD_TESTING=ON - name: 'Build' run: cmake --build build