Skip to content

Commit 9f992ef

Browse files
committed
ci: add release workflow for EAS build
1 parent bf1a391 commit 9f992ef

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: EAS Build
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
build:
9+
name: Install and build
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-node@v6
14+
with:
15+
node-version: 22
16+
cache: npm
17+
- name: Setup Expo and EAS
18+
uses: expo/expo-github-action@v8
19+
with:
20+
eas-version: latest
21+
token: ${{ secrets.EXPO_TOKEN }}
22+
- name: Install dependencies
23+
run: npm ci
24+
- name: Build on EAS
25+
run: eas build --profile testing --platform android --non-interactive --no-wait

0 commit comments

Comments
 (0)