diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 963d6e253402..45e7ef8e0739 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -156,7 +156,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 # TODO(bug?): android debug builds are broken. - if: ${{ ! (startsWith(matrix.platform, 'android') && matrix.config == 'debug') }} + if: ${{ ! (contains(matrix.platform, 'android') && matrix.config == 'debug') }} with: path: src # Use fetch depth of 0 to get full history for a valid build id. @@ -164,7 +164,7 @@ jobs: - name: Build Cobalt uses: ./src/.github/actions/build # TODO(bug?): android debug builds are broken. - if: ${{ ! (startsWith(matrix.platform, 'android') && matrix.config == 'debug') }} + if: ${{ ! (contains(matrix.platform, 'android') && matrix.config == 'debug') }} with: targets: ${{ needs.initialize.outputs.targets }} - name: Upload Test Artifacts