Skip to content

Commit

Permalink
chore: Update Fastfile and build workflow
Browse files Browse the repository at this point in the history
- Updated the Fastfile to use keyword arguments for better readability.
- Changed the build workflow to run on macOS latest instead of Ubuntu latest.
  • Loading branch information
niyajali committed Dec 23, 2024
1 parent 1fc8c8b commit dd3ffe6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-android-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
build_android:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
16 changes: 8 additions & 8 deletions fastlane/FastFile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ platform :android do
buildAndSignApp(
taskName: "assemble",
buildType: "Release",
storeFile : options[:storeFile],
storePassword : options[:storePassword],
keyAlias : options[:keyAlias],
keyPassword : options[:keyPassword],
storeFile: options[:storeFile],
storePassword: options[:storePassword],
keyAlias: options[:keyAlias],
keyPassword: options[:keyPassword],
)
end

Expand All @@ -35,10 +35,10 @@ platform :android do
buildAndSignApp(
taskName: "bundle",
buildType: "Release",
storeFile : options[:storeFile],
storePassword : options[:storePassword],
keyAlias : options[:keyAlias],
keyPassword : options[:keyPassword],
storeFile: options[:storeFile],
storePassword: options[:storePassword],
keyAlias: options[:keyAlias],
keyPassword: options[:keyPassword],
)
end

Expand Down

0 comments on commit dd3ffe6

Please # to comment.