Skip to content

Commit 09789a0

Browse files
committed
debug matrix
1 parent 563cd5d commit 09789a0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/eas-build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,17 @@ jobs:
6060
steps:
6161
- name: Do not run ios matrix if ios input is false
6262
if: ${{ inputs.ios == false }} && ${{ matrix.platform == 'ios' }}
63-
run: exit 1
63+
run: |
64+
echo ${{ matrix.platform }}
65+
echo ${{ inputs.ios }}
66+
exit 1
6467
6568
- name: Do not run android matrix if android input is false
6669
if: ${{ inputs.android == false }} && ${{ matrix.platform == 'android' }}
67-
run: exit 1
70+
run: |
71+
echo ${{ matrix.platform }}
72+
echo ${{ inputs.android }}
73+
exit 1
6874
6975
- name: Check for EXPO_TOKEN
7076
run: |

0 commit comments

Comments
 (0)