diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e232bd..28b0dc1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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/ diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 84f71f9..2feb05a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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 @@ -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")