File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed
Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change 4949 runs-on : ${{ matrix.os }}
5050 environment : app-${{ inputs.environment }}
5151 strategy :
52- fail-fast : false
5352 matrix :
5453 platform : [ios, android]
5554 include :
@@ -58,13 +57,19 @@ jobs:
5857 - platform : android
5958 os : ubuntu-latest
6059 steps :
61- - name : Skip iOS matrix if iOS input is false
62- if : ${{ inputs.ios == false && matrix.platform == 'ios' }}
63- run : echo "Skipping iOS build"
60+ - name : Do not run ios matrix if ios input is false
61+ if : ${{ inputs.ios == false }} && ${{ matrix.platform == 'ios' }}
62+ run : |
63+ echo ${{ matrix.platform }}
64+ echo ${{ inputs.ios }}
65+ exit 1
6466
65- - name : Skip Android matrix if Android input is false
66- if : ${{ inputs.android == false && matrix.platform == 'android' }}
67- run : echo "Skipping Android build"
67+ - name : Do not run android matrix if android input is false
68+ if : ${{ inputs.android == false }} && ${{ matrix.platform == 'android' }}
69+ run : |
70+ echo ${{ matrix.platform }}
71+ echo ${{ inputs.android }}
72+ exit 1
6873
6974 - name : Check for EXPO_TOKEN
7075 run : |
You can’t perform that action at this time.
0 commit comments