Skip to content

Commit

Permalink
chore: build_type = Release
Browse files Browse the repository at this point in the history
  • Loading branch information
kingisaac95 committed Aug 25, 2023
1 parent 94b9c81 commit 67de805
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-apps.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: 'eu-west-2'
aws-bucket: ${{ secrets.AWS_BUCKET }}
file-path: 'android/app/build/outputs/apk/debug/app-debug.apk'
file-path: 'android/app/build/outputs/apk/release/app-release.apk'
destination-dir: '/'
bucket-root: ${{ format('/link/webview/react-native/android/build.{0}', github.run_number) }}

Expand All @@ -34,7 +34,7 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: 'eu-west-2'
aws-bucket: ${{ secrets.AWS_BUCKET }}
file-path: 'android/app/build/outputs/apk/debug/app-debug.apk'
file-path: 'android/app/build/outputs/apk/release/app-release.apk'
destination-dir: '/'
bucket-root: '/link/webview/react-native/android/latest'

Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Expand Up @@ -26,7 +26,7 @@ platform :android do
lane :build_android do
setup_ci if ENV['CI']
gradle(task: 'clean', project_dir: 'android/')
gradle(task: 'assemble', build_type: 'Debug', project_dir: 'android/')
gradle(task: 'assemble', build_type: 'Release', project_dir: 'android/')
end
end

Expand Down

0 comments on commit 67de805

Please sign in to comment.