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: env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with: with:
files: app/build/outputs/apk/fdroid/release/*.apk files: NumberHub.apk
- name: Build AABs 📱 - name: Build AABs 📱
run: ./gradlew bundleRelease run: ./gradlew bundleRelease
@ -55,4 +55,4 @@ jobs:
env: env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with: with:
files: app/build/outputs/bundle/fdroidRelease/*.aab files: NumberHub.aab

View File

@ -36,7 +36,7 @@ android {
signingConfigs { signingConfigs {
create("release") { create("release") {
val properties = Properties().apply { val properties = Properties().apply {
load(file("../key.properties").reader()) load(rootProject.file("key.properties").reader())
} }
storeFile = File(properties.getProperty("storeFile")) storeFile = File(properties.getProperty("storeFile"))
storePassword = properties.getProperty("storePassword") storePassword = properties.getProperty("storePassword")