File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed
Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -58,19 +58,13 @@ jobs:
5858 - platform : android
5959 os : ubuntu-latest
6060 steps :
61- - name : Do not run ios matrix if ios input is false
62- if : ${{ inputs.ios == false }} && ${{ matrix.platform == 'ios' }}
63- run : |
64- echo ${{ matrix.platform }}
65- echo ${{ inputs.ios }}
66- exit 1
61+ - name : Skip iOS matrix if iOS input is false
62+ if : ${{ inputs.ios == false && matrix.platform == 'ios' }}
63+ run : echo "Skipping iOS build"
6764
68- - name : Do not run android matrix if android input is false
69- if : ${{ inputs.android == false }} && ${{ matrix.platform == 'android' }}
70- run : |
71- echo ${{ matrix.platform }}
72- echo ${{ inputs.android }}
73- exit 1
65+ - name : Skip Android matrix if Android input is false
66+ if : ${{ inputs.android == false && matrix.platform == 'android' }}
67+ run : echo "Skipping Android build"
7468
7569 - name : Check for EXPO_TOKEN
7670 run : |
You can’t perform that action at this time.
0 commit comments