diff --git a/.github/workflows/release-app-github.yaml b/.github/workflows/release-app-github.yaml index 4e52d0de..ab25b305 100644 --- a/.github/workflows/release-app-github.yaml +++ b/.github/workflows/release-app-github.yaml @@ -41,7 +41,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: - files: app/build/outputs/apk/fdroid/release/*.apk + files: NumberHub.apk - name: Build AABs 📱 run: ./gradlew bundleRelease @@ -55,4 +55,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: - files: app/build/outputs/bundle/fdroidRelease/*.aab \ No newline at end of file + files: NumberHub.aab \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index d126c435..2b5a12b6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -36,7 +36,7 @@ android { signingConfigs { create("release") { val properties = Properties().apply { - load(file("../key.properties").reader()) + load(rootProject.file("key.properties").reader()) } storeFile = File(properties.getProperty("storeFile")) storePassword = properties.getProperty("storePassword")