✨ Support more than 25 record types (#130) #16
Workflow file for this run
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: Build | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the code | |
- name: 'Checkout source code' | |
uses: actions/checkout@v2 | |
# Setup node.js and yarn | |
- name: '🏗 Setup node.js' | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
cache: yarn | |
# Setup Expo | |
- name: '🏗 Setup Expo and EAS' | |
uses: expo/expo-github-action@v7 | |
with: | |
expo-version: latest | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
# Install npm dependencies | |
- name: '📦 Install dependencies' | |
run: yarn install | |
# Build | |
- name: '🚀 Build app (android apk)' | |
run: yarn build:android:development |