File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 88 name : Install and publish
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v1
12- - uses : actions/setup-node@v1
11+ - name : Checkout
12+ uses : actions/checkout@v1
13+
14+ - name : Setup Node.js
15+ uses : actions/setup-node@v1
1316 with :
1417 node-version : 12.x
15- - uses : expo/expo-github-action@v5
18+
19+ - name : Setup Expo
20+ uses : expo/expo-github-action@v5
1621 with :
1722 expo-version : 3.x
1823 expo-username : ${{ secrets.EXPO_CLI_USERNAME }}
1924 expo-password : ${{ secrets.EXPO_CLI_PASSWORD }}
2025 expo-cache : true
21- - run : yarn bootstrap
22- - run : cd example
23- - run : expo publish
26+
27+ - name : Install dependencies
28+ run : yarn bootstrap
29+
30+ - name : Publish Expo app
31+ working-directory : ./example
32+ run : expo publish
You can’t perform that action at this time.
0 commit comments