forked from DroidKaigi/conference-app-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (31 loc) · 787 Bytes
/
build.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
36
37
38
39
40
name: build
# From now in android
# https://github.com/android/nowinandroid
on:
push:
branches:
- main
pull_request:
paths-ignore:
- 'app-ios/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
build:
permissions:
contents: read
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/[email protected]
- uses: ./.github/actions/setup-java
- run: ./gradlew :app-android:assembleDevDebug --stacktrace
- name: Upload build outputs (APKs)
uses: actions/upload-artifact@v4
with:
name: build-outputs
path: app-android/build/outputs
retention-days: 14