forked from WS22-23-SWEPM3ILV-INF-BA-VZ-Group-2/App
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 900 Bytes
/
android.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
on:
workflow_dispatch:
jobs:
build-android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3.6.0
with:
node-version: latest
- name: Setup Android SDK Tools
uses: android-actions/setup-android@v2.0.2
- name: Npm install
run: npm ci
- name: Expo Github Action
uses: expo/expo-github-action@7.2.0
with:
expo-version: latest
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Expo build
run: eas build --platform android --profile release --local --non-interactive
- name: Upload math result for job 1
uses: actions/upload-artifact@v3
with:
name: iosApp
path: ${{ github.workspace }}/*.apk