Skip to content

Commit

Permalink
fix: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzel394 committed May 3, 2024
1 parent ee12fc4 commit b8a302d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-app-github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -55,4 +55,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
files: app/build/outputs/bundle/fdroidRelease/*.aab
files: NumberHub.aab
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit b8a302d

Please sign in to comment.