diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index a76bbbd9..f56dce43 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Base Dependencies uses: ./.github/actions/base-deps + with: + platform: ${{ matrix.platform }} - name: Setup Build Cache uses: ./.github/actions/build-cache diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index e672f0a7..4430c2dd 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Base Dependencies uses: ./.github/actions/base-deps + with: + platform: ${{ matrix.platform }} - name: Setup Build Cache uses: ./.github/actions/build-cache diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a126a8eb..5455b63d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Base Dependencies uses: ./.github/actions/base-deps + with: + platform: ${{ matrix.platform }} - name: Setup Build Cache uses: ./.github/actions/build-cache diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1e304de8..39514bd3 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Base Dependencies uses: ./.github/actions/base-deps + with: + platform: ${{ matrix.platform }} - name: Setup Build Cache uses: ./.github/actions/build-cache diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index b436d929..058047b9 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Base Dependencies uses: ./.github/actions/base-deps + with: + platform: ${{ matrix.platform }} # - name: Setup Build Cache # uses: ./.github/actions/build-cache diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b76a5fbc..9396c0bd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Base Dependencies uses: ./.github/actions/base-deps + with: + platform: ${{ matrix.platform }} - name: Setup Build Cache uses: ./.github/actions/build-cache