Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit bcae143

Browse files
committed
feat: add GitHub Actions workflow for building APK
1 parent 0bc1ffe commit bcae143

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Build apk
2+
3+
on:
4+
push:
5+
branches:
6+
- feature/deploy
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: 🏗 Setup repo
13+
uses: actions/checkout@v4
14+
15+
- name: 🏗 Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
cache: bun
20+
21+
- name: 🏗 Setup EAS
22+
uses: expo/expo-github-action@v8
23+
with:
24+
eas-version: latest
25+
token: ${{ secrets.EXPO_TOKEN }}
26+
27+
- name: 🏗 Setup Bun
28+
run: curl -fsSL https://bun.sh/install | bash
29+
30+
- name: 📦 Install dependencies
31+
run: bun install
32+
33+
- name: 🚀 Build app
34+
run: eas build --platform android --local

0 commit comments

Comments
 (0)