Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to list all EXPO release-channel?

Where can I find a list of all release channels for an EXPO app?

The last developer left and we don't know the --release-channel in use. Is there any way to find out the --release-channel's there were about 6 or 7 we need to find out

exp publish --release-channel <your-channel>
like image 699
lito Avatar asked Apr 19 '18 19:04

lito


1 Answers

You can see everything that you’ve published with expo publish:history

Also you can filter by platform:

expo publish:history --platform ios

expo publish:history --platform android

Documentation: https://docs.expo.io/versions/latest/distribution/advanced-release-channels

like image 51
aLIEz Avatar answered Nov 02 '22 23:11

aLIEz