Skip to content

Commit 86f0bc1

Browse files
committed
test 2
1 parent 09789a0 commit 86f0bc1

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

.github/workflows/eas-build.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)