-
-
Notifications
You must be signed in to change notification settings - Fork 60
43 lines (35 loc) · 912 Bytes
/
debug_build.yml
File metadata and controls
43 lines (35 loc) · 912 Bytes
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
name: Debug Build
on:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Java 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
cache: gradle
- name: Grant execution permission to Gradle Wrapper
run: chmod +x gradlew
- name: Build Debug App
run: ./gradlew assembleFdroidDebug
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.6.0
with:
name: EasyNotes-debug.apk
path: app/build/outputs/apk/fdroid/debug/app-fdroid-debug.apk