Skip to content

Commit 7dee95c

Browse files
committed
test 3
1 parent 86f0bc1 commit 7dee95c

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/eas-build.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ jobs:
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: |

0 commit comments

Comments
 (0)