fix: Fix build

This commit is contained in:
Myzel394 2024-05-03 14:02:32 +02:00
parent ee12fc493e
commit b8a302d815
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185
2 changed files with 3 additions and 3 deletions

View File

@ -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
files: NumberHub.aab

View File

@ -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")