-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (41 loc) · 1.16 KB
/
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
41
42
43
44
45
46
47
48
49
name: Build
on:
push:
branches: [ workflow-github, master ]
paths-ignore:
- '*.md'
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: gradle
# - name: Grant execute permission for gradlew
# run: chmod +x ./gradlew
- name: Build APK
run: ./gradlew assembleDebug --stacktrace
# auto-merge:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: ahmadnassri/action-dependabot-auto-merge@v2
# with:
# github-token: ${{ secrets.mytoken }}
# - name: Upload APK
# uses: actions/upload-artifact@v3
# with:
# name: NYTimes APK
# path: app/build/outputs/apk/debug/app-debug.apk
# tag: ${{ github.ref }}
# overwrite: true