Skip to content

Commit

Permalink
fix(ci): remove build type from task name (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-ghorbani authored Dec 1, 2024
1 parent a4d7aef commit 841da2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ platform :android do

# Build APK for GitHub Release
gradle(
task: "assembleRelease",
task: "assemble",
build_type: "Release",
properties: {
"android.injected.signing.store.file" => File.join(android_dir, "app/pocketpal-release-key.keystore"),
Expand All @@ -19,7 +19,7 @@ platform :android do

# Build Bundle for Play Store
gradle(
task: "bundleRelease",
task: "bundle",
build_type: "Release",
properties: {
"android.injected.signing.store.file" => File.join(android_dir, "app/pocketpal-release-key.keystore"),
Expand Down

0 comments on commit 841da2c

Please sign in to comment.