@@ -52,9 +52,6 @@ variable | default | description
5252
5353> It's also recommended to set the ` expo-version ` to avoid breaking changes when a new major version is released.
5454
55- > ` expo-token ` is available from Expo CLI ` 3.25.0 ` .
56-
57-
5855## Example workflows
5956
6057Before you dive into the workflow examples, you should know the basics of GitHub Actions.
@@ -87,10 +84,10 @@ jobs:
8784 - uses : actions/checkout@v2
8885 - uses : actions/setup-node@v1
8986 with :
90- node-version : 12 .x
87+ node-version : 14 .x
9188 - uses : expo/expo-github-action@v5
9289 with :
93- expo-version : 3 .x
90+ expo-version : 4 .x
9491 expo-username : ${{ secrets.EXPO_CLI_USERNAME }}
9592 expo-password : ${{ secrets.EXPO_CLI_PASSWORD }}
9693 - run : yarn install
@@ -119,10 +116,10 @@ jobs:
119116 - uses : actions/checkout@v2
120117 - uses : actions/setup-node@v1
121118 with :
122- node-version : 12 .x
119+ node-version : 14 .x
123120 - uses : expo/expo-github-action@v5
124121 with :
125- expo-version : 3 .x
122+ expo-version : 4 .x
126123 expo-username : ${{ secrets.EXPO_CLI_USERNAME }}
127124 expo-password : ${{ secrets.EXPO_CLI_PASSWORD }}
128125 expo-cache : true
@@ -147,10 +144,10 @@ jobs:
147144 - uses : actions/checkout@v2
148145 - uses : actions/setup-node@v1
149146 with :
150- node-version : 12 .x
147+ node-version : 14 .x
151148 - uses : expo/expo-github-action@v5
152149 with :
153- expo-version : 3 .x
150+ expo-version : 4 .x
154151 expo-username : ${{ secrets.EXPO_CLI_USERNAME }}
155152 expo-password : ${{ secrets.EXPO_CLI_PASSWORD }}
156153 - run : yarn install
@@ -187,7 +184,7 @@ jobs:
187184 node-version: ${{ matrix.node }}
188185 - uses: expo/expo-github-action@v5
189186 with:
190- expo-version: 3 .x
187+ expo-version: 4 .x
191188 - run: yarn install
192189 - run: yarn test
193190 - run: expo doctor
@@ -211,10 +208,10 @@ jobs:
211208 - uses: actions/checkout@v2
212209 - uses: actions/setup-node@v1
213210 with:
214- node-version: 12 .x
211+ node-version: 14 .x
215212 - uses: expo/expo-github-action@v5
216213 with:
217- expo-version: 3 .x
214+ expo-version: 4 .x
218215 - run: yarn install
219216 - run: yarn test
220217 - run: expo build:web
@@ -239,10 +236,10 @@ jobs:
239236 - uses: actions/checkout@v2
240237 - uses: actions/setup-node@v1
241238 with:
242- node-version: 12 .x
239+ node-version: 14 .x
243240 - uses: expo/expo-github-action@v5
244241 with:
245- expo-version: 3 .x
242+ expo-version: 4 .x
246243 expo-token: ${{ secrets.EXPO_TOKEN }}
247244 - run: yarn install
248245 - run: expo publish
0 commit comments