Skip to content

Commit

Permalink
feat: Add Android build to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
letehaha committed Nov 10, 2023
1 parent 6c555f5 commit f6f13eb
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/build-entries.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build xNFT, web, and mobile
name: Build apps

on:
push:
Expand Down Expand Up @@ -41,17 +41,18 @@ jobs:
- name: Build web
run: npm run build:web

# build-android:
# name: Build Android
# needs: prepare-dependencies
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# - uses: ./.github/actions/prepare-local-env
# - name: 🏗 Setup EAS
# uses: expo/expo-github-action@v8
# with:
# eas-version: latest
# - name: Build Android
# run: npm run build:mobile:prod
build-android:
name: Build Android
needs: prepare-dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: ./.github/actions/prepare-local-env
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Build Android
run: npm run build:mobile:prod

0 comments on commit f6f13eb

Please sign in to comment.