Ft articles article details(09.89-91) #112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
update: | |
name: EAS Update | |
runs-on: windows-latest | |
steps: | |
- name: Check for EXPO_TOKEN | |
run: | | |
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then | |
echo "EXPO_TOKEN is not set." | |
exit 1 | |
fi | |
shell: bash | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '>=18.x' | |
cache: npm | |
- name: Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: Install dependencies | |
run: npm install | |
- name: Deploy to Expo | |
run: npm run build | |
env: | |
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }} |