File tree Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Create APK from Master
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : write
13
+
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v4
17
+
18
+ - name : Set up JDK 21
19
+ uses : actions/setup-java@v4
20
+ with :
21
+ java-version : ' 21'
22
+ distribution : ' jetbrains'
23
+
24
+ - name : Grant execute permission for gradlew
25
+ run : chmod +x ./gradlew
26
+
27
+ - name : Build with Gradle
28
+ run : ./gradlew assembleDebug
29
+
30
+ - name : Create Release
31
+
32
+ with :
33
+ tag : " latest-master"
34
+ generateReleaseNotes : true
35
+ commit : " master"
36
+ allowUpdates : true
37
+ artifacts : " app/build/outputs/apk/debug/*.apk"
38
+ makeLatest : true
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ Deepr is a native Android application designed to streamline the management and
4
4
5
5
![ ./assets/deepr-cover.png] ( ./assets/deepr-cover.png )
6
6
7
+ ## Download
8
+ You can download the latest version of the application from the [ releases page] ( https://github.com/yogeshpaliyal/Deepr/releases ) .
9
+
7
10
## Features
8
11
9
12
- ** Save and Organize Deeplinks:** Easily store and manage a list of frequently used deeplinks.
Original file line number Diff line number Diff line change @@ -38,6 +38,15 @@ android {
38
38
buildFeatures {
39
39
compose = true
40
40
}
41
+
42
+ signingConfigs {
43
+ getByName(" debug" ) {
44
+ storeFile = file(" ../keystores/debug.keystore" )
45
+ storePassword = " android"
46
+ keyAlias = " androiddebugkey"
47
+ keyPassword = " android"
48
+ }
49
+ }
41
50
}
42
51
43
52
sqldelight {
You can’t perform that action at this time.
0 commit comments