Skip to content

Commit

Permalink
now we are talking
Browse files Browse the repository at this point in the history
  • Loading branch information
IndusAryan committed Jul 15, 2024
1 parent 4ce686a commit 7e9dc2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup JAVA 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand All @@ -37,9 +37,6 @@ jobs:
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
run: ./gradlew assembleRelease

- name: Capture Gradle Output
run: ./gradlew assembleRelease --debug

- name: List files for debugging
run: ls -R app/build/outputs/apk/release/

Expand Down
4 changes: 4 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ plugins {
kotlin("plugin.serialization") version "1.9.22"
}

/*val tmpFilePath = System.getProperty("user.home") + "/work/_temp/keystore/"
val releaseStoreFile: File? = File(tmpFilePath).listFiles()?.first()*/

android {
namespace = "com.aryan.veena"
compileSdk = 34
Expand All @@ -21,6 +24,7 @@ android {

signingConfigs {
create("release") {
//storeFile = releaseStoreFile?.let { file(it) }
storeFile = file(System.getenv("SIGNING_KEY_STORE_PATH"))
storePassword = System.getenv("SIGNING_STORE_PASSWORD")
keyAlias = System.getenv("SIGNING_KEY_ALIAS")
Expand Down

0 comments on commit 7e9dc2f

Please sign in to comment.