Skip to content

Commit

Permalink
Fix GHA conditional to speed up builds (#4423)
Browse files Browse the repository at this point in the history
b/378911265
  • Loading branch information
andrewsavage1 authored Nov 13, 2024
1 parent 1122f23 commit 8c88946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
run: gclient config --name=src https://github.com/${{ github.repository }}
shell: bash
- name: Set target OS for Android
if: startsWith(${{matrix.platform}}, 'android')
if: ${{ contains(matrix.platform, 'android') }}
run: |
echo "target_os=['android']" >> .gclient
gclient validate
Expand Down

0 comments on commit 8c88946

Please sign in to comment.