We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 563cd5d commit 09789a0Copy full SHA for 09789a0
.github/workflows/eas-build.yml
@@ -60,11 +60,17 @@ jobs:
60
steps:
61
- name: Do not run ios matrix if ios input is false
62
if: ${{ inputs.ios == false }} && ${{ matrix.platform == 'ios' }}
63
- run: exit 1
+ run: |
64
+ echo ${{ matrix.platform }}
65
+ echo ${{ inputs.ios }}
66
+ exit 1
67
68
- name: Do not run android matrix if android input is false
69
if: ${{ inputs.android == false }} && ${{ matrix.platform == 'android' }}
70
71
72
+ echo ${{ inputs.android }}
73
74
75
- name: Check for EXPO_TOKEN
76
run: |
0 commit comments