diff --git a/.github/workflows/emu-deps-linux.yml b/.github/workflows/emu-deps-linux.yml index dd7357d7..73834c62 100644 --- a/.github/workflows/emu-deps-linux.yml +++ b/.github/workflows/emu-deps-linux.yml @@ -35,6 +35,13 @@ jobs: if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' uses: actions/checkout@v4 + - name: Clone third-party deps (common/linux) + if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' + uses: actions/checkout@v4 + with: + ref: 'third-party/common/linux' + path: "${{env.THIRD_PARTY_BASE_DIR}}/common/linux" + - name: Clone third-party deps (deps/linux) if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' uses: actions/checkout@v4 diff --git a/.github/workflows/emu-deps-win.yml b/.github/workflows/emu-deps-win.yml index bb9c754d..8f7cff7a 100644 --- a/.github/workflows/emu-deps-win.yml +++ b/.github/workflows/emu-deps-win.yml @@ -45,6 +45,13 @@ jobs: if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' uses: actions/checkout@v4 + - name: Clone third-party deps (common/win) + if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' + uses: actions/checkout@v4 + with: + ref: 'third-party/common/win' + path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win" + - name: Clone third-party deps (deps/win) if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' uses: actions/checkout@v4